Created
March 7, 2023 09:42
-
-
Save ByteCrak07/72b9d2cafd10c2380258547309aec8af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "../styles/globals.css"; | |
import type { AppProps } from "next/app"; | |
import AuthWrapper from "../contexts/AuthWrapper"; | |
export default function App({ Component, pageProps }: AppProps) { | |
return ( | |
<AuthWrapper> | |
<Component {...pageProps} /> | |
</AuthWrapper> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment