18 lines
319 B
TypeScript
18 lines
319 B
TypeScript
|
import React from "react"
|
||
|
import "./globals.css"
|
||
|
import '@fontsource-variable/bricolage-grotesque'
|
||
|
|
||
|
export default function RootLayout({
|
||
|
children,
|
||
|
}: Readonly<{
|
||
|
children: React.ReactNode;
|
||
|
}>) {
|
||
|
return (
|
||
|
<html lang="en">
|
||
|
<body className="antialiased">
|
||
|
{children}
|
||
|
</body>
|
||
|
</html>
|
||
|
);
|
||
|
}
|