chakura is broke

This commit is contained in:
2024-11-20 16:37:54 -05:00
parent c82d4c7920
commit f17285db46
6 changed files with 87 additions and 15 deletions

12
src/app/providers.tsx Normal file
View File

@@ -0,0 +1,12 @@
// app/providers.tsx
'use client';
import { ChakraProvider } from '@chakra-ui/react';
export function Providers({ children }: { children: React.ReactNode }) {
return (
{children}
);
}