0.0.1Updated a month ago
import type { ComponentChildren } from "preact";

interface AppProps {
  children?: ComponentChildren
}
export const AppLayout = ({ children }: AppProps = {}) => {
  return (
    <html>
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <link rel="stylesheet" href="/css/style.css" />
        <title>DivZero</title>
      </head>
      { children }
    </html>
  )
}