16 lines
387 B
TypeScript
16 lines
387 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import './globals.css';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'My New App',
|
||
|
|
description: 'Generated by Onlook',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
||
|
|
return (
|
||
|
|
<html data-oid="6stvvd5">
|
||
|
|
<body data-oid="cleljfg">{children}</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|