Skip to content

Instantly share code, notes, and snippets.

@ByteCrak07
Created March 7, 2023 09:42
Show Gist options
  • Save ByteCrak07/72b9d2cafd10c2380258547309aec8af to your computer and use it in GitHub Desktop.
Save ByteCrak07/72b9d2cafd10c2380258547309aec8af to your computer and use it in GitHub Desktop.
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