Skip to content

Instantly share code, notes, and snippets.

@ShekMak

ShekMak/_app.tsx Secret

Created February 20, 2022 17:54
Embed
What would you like to do?
import '../styles/globals.css'
import type { AppProps } from 'next/app'
import 'bootstrap-icons/font/bootstrap-icons.css';
import { AuthContextProvider } from '../store/auth.context';
function MyApp({ Component, pageProps }: AppProps) {
return (
<AuthContextProvider>
<div className="bg-white text-black font-serif h-screen w-screen overflow-hidden">
<Component {...pageProps} />
</div>
</AuthContextProvider>
)
}
export default MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment