Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 274 B view raw
1export const metadata = { 2 title: 'Create Next App', 3 description: 'Generated by create next app', 4}; 5 6export default function RootLayout({ 7 children, 8}: { 9 children: React.ReactNode; 10}) { 11 return ( 12 <html lang="en"> 13 <body>{children}</body> 14 </html> 15 ); 16}