--- trunk/docs/app/providers.tsx 2024/08/30 10:10:56 625 +++ trunk/docs/app/providers.tsx 2024/09/07 09:38:45 626 @@ -3,12 +3,15 @@ import { RouterContextProvider } from "@/contexts/RouterContext"; import { theme } from "@/utils/theme"; import { ThemeProvider } from "@emotion/react"; +import { NextUIProvider } from "@nextui-org/react"; import { PropsWithChildren } from "react"; export default function Providers({ children }: PropsWithChildren) { return ( - {children} + + {children} + ); }