cal.pub0.org/pages/_app.tsx

13 lines
258 B
TypeScript
Raw Normal View History

2021-03-10 10:02:39 +00:00
import '../styles/globals.css'
2021-03-24 15:03:04 +00:00
import { Provider } from 'next-auth/client'
2021-03-10 10:02:39 +00:00
function MyApp({ Component, pageProps }) {
2021-03-24 15:03:04 +00:00
return (
<Provider session={pageProps.session}>
<Component {...pageProps} />
</Provider>
)
2021-03-10 10:02:39 +00:00
}
export default MyApp