Skip to content

Commit

Permalink
fix: replace wrapping component as UserState instead of UserContext
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilalekha committed Apr 27, 2021
1 parent 93233c2 commit f1bf8c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { UserContext } from "../context/user/userContext";
import UserState from "../context/user/UserState";
import "../styles/globals.css";

function MyApp({ Component, pageProps }) {
return (
<UserContext>
<UserState>
<Component {...pageProps} />
</UserContext>
</UserState>
);
}

Expand Down

0 comments on commit f1bf8c2

Please sign in to comment.