mirror of
https://github.com/tabler/tabler.git
synced 2025-12-26 11:16:12 +04:00
11 lines
233 B
TypeScript
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>;
|
|
}; |