๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ layout.tsx ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <head>
        <meta charSet="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <title>vinext on Cloudflare Workers</title>
      </head>
      <body>{children}</body>
    </html>
  );
}