import { type AppType } from "next/app"; import { type Session } from "next-auth"; import { SessionProvider } from "next-auth/react"; import "~/styles/globals.css"; import 'ui/styles.css'; import { Layout } from 'ui'; const MyApp: AppType<{ session: Session | null }> = ({ Component, pageProps: { session, ...pageProps }, }) => { return ( ); }; export default MyApp;