waterwolf-auth/apps/frontend/app/(main)/providers.tsx
Kakious 994a94f9e3
Some checks failed
/ build (push) Failing after 10s
feat: begin new ui
fix: attempt to build using local docker file
2024-11-23 01:06:37 -05:00

9 lines
140 B
TypeScript

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