mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 23:15:36 +00:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
import '../styles/globals.scss';
|
|
import { SessionProvider } from 'next-auth/react';
|
|
|
|
function MyApp({
|
|
Component,
|
|
pageProps: { session, ...pageProps }
|
|
}) {
|
|
return (
|
|
<SessionProvider session={session}>
|
|
<Component {...pageProps} />
|
|
</SessionProvider>
|
|
);
|
|
}
|
|
|
|
export default MyApp; |