mirror of
https://github.com/stoatchat/service-admin-panel.git
synced 2026-07-01 21:44:47 -04:00
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
"use client";
|
|
|
|
import { SessionProvider } from "next-auth/react";
|
|
|
|
type Props = {
|
|
children?: React.ReactNode;
|
|
};
|
|
|
|
export const ClientAuthProvider = ({ children }: Props) => {
|
|
return <SessionProvider>{children}</SessionProvider>;
|
|
};
|