Skip to content

Instantly share code, notes, and snippets.

@igorasilveira
Last active February 19, 2022 09:44
Show Gist options
  • Save igorasilveira/7265963b3f94df45d45e9a5e1776ae27 to your computer and use it in GitHub Desktop.
Save igorasilveira/7265963b3f94df45d45e9a5e1776ae27 to your computer and use it in GitHub Desktop.
App JS
import '../styles/globals.css'
import { UserProvider } from '@auth0/nextjs-auth0';
export default function App({ Component, pageProps }) {
return (
<UserProvider>
<Component {...pageProps} />
</UserProvider>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment