1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00
Files
tabler/site/components/NextAuthProvider.tsx
tabler.developer@gmail.com a76df72359 prisma and auth init
2023-08-15 00:30:16 +02:00

11 lines
233 B
TypeScript

'use client';
import { SessionProvider } from 'next-auth/react';
type Props = {
children?: React.ReactNode;
};
export const NextAuthProvider = ({ children }: Props) => {
return <SessionProvider>{children}</SessionProvider>;
};