mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
"use client";
|
|
|
|
import { FiefAuthProvider } from "@fief/fief/nextjs/react";
|
|
|
|
export default function FiefWrapper({ children }) {
|
|
return (
|
|
<FiefAuthProvider currentUserPath="/api/current-user">
|
|
{children}
|
|
</FiefAuthProvider>
|
|
);
|
|
}
|