Files
next-learn/dashboard/starter-example/app/layout.tsx
2023-10-26 08:47:33 -07:00

15 lines
285 B
TypeScript

import '@/app/ui/global.css';
import { inter } from '@/app/ui/fonts';
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={`${inter.className} antialiased`}>{children}</body>
</html>
);
}