mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-18 21:44:08 +01:00
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
"use client";
|
|
|
|
import React, { ReactNode } from "react";
|
|
import { SessionProvider } from "next-auth/react";
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function SessesionProviderClient(props: Props) {
|
|
return <SessionProvider>{props.children}</SessionProvider>;
|
|
}
|