Files
next-learn/dashboard/15-final/app/layout.tsx
Delba de Oliveira fb1f99f54e Re-organize
2023-10-03 14:05:39 +01:00

21 lines
421 B
TypeScript

import '@/app/ui/global.css';
import type { Metadata } from 'next';
import { inter } from '@/app/ui/fonts';
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}