try chakra-ui

This commit is contained in:
Sara
2023-12-14 19:27:16 +01:00
parent 6048339c26
commit 01c7f47250
7 changed files with 1660 additions and 74 deletions

7
www/app/providers.tsx Normal file
View File

@@ -0,0 +1,7 @@
"use client";
import { ChakraProvider } from "@chakra-ui/react";
export function Providers({ children }: { children: React.ReactNode }) {
return <ChakraProvider>{children}</ChakraProvider>;
}