react-server675fbba4
react-serverfilesexampleschakra-uiapplayout.jsx
examples/chakra-ui/app/layout.jsxjsx255 B040c98a0
import Providers from "./Providers";

export default function Layout({ children }) {
  return (
    <html lang="en" suppressHydrationWarning>
      <body suppressHydrationWarning>
        <Providers>{children}</Providers>
      </body>
    </html>
  );
}