File size: 405 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import { Inter } from "next/font/google"
import Provider from "./provider"
const inter = Inter({
subsets: ["latin"],
display: "swap",
})
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html className={inter.className} suppressHydrationWarning>
<head />
<body>
<Provider>{children}</Provider>
</body>
</html>
)
}
|