waterwolf-auth/apps/frontend/app/(main)/providers.tsx

10 lines
140 B
TypeScript
Raw Normal View History

'use client';
export default function Providers({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <>{children}</>;
}