CoastalCommitsPastes/src/app/layout.tsx
2022-12-16 11:49:10 -08:00

25 lines
585 B
TypeScript

import "@styles/globals.css"
import { LayoutWrapper } from "./root-layout-wrapper"
import { ServerThemeProvider } from "@wits/next-themes"
interface RootLayoutProps {
children: React.ReactNode
}
export default async function RootLayout({ children }: RootLayoutProps) {
return (
// <ServerThemeProvider
// enableSystem={true}
// disableTransitionOnChange
// cookieName={"drift-theme"}
// attribute="data-theme"
// enableColorScheme={true}
// >
<html lang="en">
<head />
<body>
<LayoutWrapper>{children}</LayoutWrapper>
</body>
</html>
)
}