nextjs-dashboard/app/layout.tsx

15 lines
285 B
TypeScript
Raw Normal View History

2023-10-30 05:07:19 +00:00
import '@/app/ui/global.css';
import { inter } from '@/app/ui/fonts';
2023-10-29 23:23:33 +00:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
2023-10-30 05:07:19 +00:00
<body className={`${inter.className} antialiased`}>{children}</body>
2023-10-29 23:23:33 +00:00
</html>
);
}