andrewBlogs
History for Layout.tsx
- 9199123456789101112131415161718/** @jsxImportSource npm:react@18.2.0 */import type { ReactNode } from "npm:react@18.2.0";export function Layout({ children }: { children: ReactNode }) {return (<html lang="en"><head><meta charSet="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Alex Whines</title><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css" /></head><body>{children}</body></html>);}