diff --git a/src/App.js b/src/App.js index efc8901..e4b5a63 100644 --- a/src/App.js +++ b/src/App.js @@ -12,6 +12,7 @@ import { getFirestore, query, where, getDocs } from "firebase/firestore"; + import {getStorage} from "firebase/storage" import { Header } from "./components/Header" import './App.css' @@ -24,6 +25,7 @@ import { Signin } from "./pages/Signin" // contexts import { AuthContext } from "./contexts/AuthContext" +import { StorageContext } from "./contexts/StorageContext"; @@ -31,6 +33,7 @@ function App() { const FBapp = initializeApp(FirebaseConfig) const FBauth = getAuth(FBapp) const FBdb = getFirestore(FBapp) + const FBstorage = getStorage(FBapp) // navigation array @@ -129,6 +132,7 @@ const readData = async () => {