react-server675fbba4
react-serverfilesexamplespokemonsrccomponentsHtml.tsx
examples/pokemon/src/components/Html.tsxtsx386 B3bbd91d8
export default function Html({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en" suppressHydrationWarning>
      <head>
        <meta charSet="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <title>Pokémon Catalog</title>
      </head>
      <body suppressHydrationWarning>{children}</body>
    </html>
  );
}