Move packages/apps back
This commit is contained in:
parent
6eaaf8e9be
commit
5535d6b575
348 changed files with 0 additions and 0 deletions
13
apps/metamigo-frontend/pages/_app.tsx
Normal file
13
apps/metamigo-frontend/pages/_app.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import "../styles/globals.css";
|
||||
import { AppProps } from "next/app";
|
||||
import { SessionProvider } from "next-auth/react";
|
||||
|
||||
function MetamigoStarter({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<SessionProvider session={pageProps.session}>
|
||||
<Component {...pageProps} />
|
||||
</SessionProvider>
|
||||
);
|
||||
}
|
||||
|
||||
export default MetamigoStarter;
|
||||
Loading…
Add table
Add a link
Reference in a new issue