nextjs-dashboard/app/layout.tsx

15 lines
285 B
TypeScript
Raw Normal View History

2024-04-18 01:57:35 -07:00
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>
);
}