diff --git a/src/App.js b/src/App.js index a0099de..470d9f0 100644 --- a/src/App.js +++ b/src/App.js @@ -17,6 +17,9 @@ import { Signup } from "./pages/Signup" import { Signout } from "./pages/Signout" import { Signin } from "./pages/Signin" +// contexts +import { AuthContext } from "./contexts/AuthContext" + function App() { diff --git a/src/contexts/AuthContext.js b/src/contexts/AuthContext.js index e69de29..8052c77 100644 --- a/src/contexts/AuthContext.js +++ b/src/contexts/AuthContext.js @@ -0,0 +1,3 @@ +import { createContext } from "react"; + +export const AuthContext = createContext() \ No newline at end of file