react-server675fbba4
react-serverfilesexamplesreact-queryapplayout.jsx
examples/react-query/app/layout.jsxjsx451 Bf28242a6
// In Next.js, this file would be called: app/layout.jsx
// import Counter from "./counter";
import "./comments.css";
import "./posts.css";

import Providers from "./providers";

// import Providers from "./test";

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