18 lines
355 B
TypeScript
18 lines
355 B
TypeScript
import { DM_Sans } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const sans = DM_Sans({
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
interface RootLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps) {
|
|
return (
|
|
<html lang="en" className={sans.className}>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|