"use client"; import { Provider as StyletronProvider } from "styletron-react"; import { styletron } from "../styletron"; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }