Initial commit - SaveTheMoment Atlas Basis-Setup

This commit is contained in:
Dennis Forte
2025-11-12 20:21:32 +01:00
commit 0b6e429329
167 changed files with 30843 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
'use client';
import { SessionProvider as NextAuthSessionProvider } from 'next-auth/react';
export default function SessionProvider({
children,
session,
}: {
children: React.ReactNode;
session: any;
}) {
return (
<NextAuthSessionProvider session={session}>
{children}
</NextAuthSessionProvider>
);
}