Files
ballistic-builder/src/app/layout.tsx

15 lines
283 B
TypeScript
Raw Normal View History

import "../styles/globals.css";
2024-11-20 17:08:05 -05:00
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
2024-11-14 12:45:58 -05:00
export default function RootLayout({ children,}: {
2024-11-20 17:08:05 -05:00
children: React.ReactNode
}) {
2024-11-14 12:45:58 -05:00
return (
<html lang="en">
2024-11-20 17:08:05 -05:00
<body>{children}</body>
2024-11-14 12:45:58 -05:00
</html>
2024-11-20 17:08:05 -05:00
)
}