initial commit

This commit is contained in:
Kyle Corbitt
2023-06-19 16:15:35 -07:00
commit 451e7b1d90
23 changed files with 3614 additions and 0 deletions

18
src/pages/_app.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { type Session } from "next-auth";
import { SessionProvider } from "next-auth/react";
import { type AppType } from "next/app";
import { api } from "~/utils/api";
import "~/styles/globals.css";
const MyApp: AppType<{ session: Session | null }> = ({
Component,
pageProps: { session, ...pageProps },
}) => {
return (
<SessionProvider session={session}>
<Component {...pageProps} />
</SessionProvider>
);
};
export default api.withTRPC(MyApp);