17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
import { Providers } from './providers'
|
|
import { fonts } from './fonts'
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode,
|
|
}) {
|
|
return (
|
|
<html lang='en' className={fonts.rubik.variable}>
|
|
<body>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|