deno.land / x / fresh@1.1.1 / tests / fixture / routes / _app.tsx
1234567891011121314import { Head } from "$fresh/runtime.ts";import { AppProps } from "$fresh/server.ts";
export default function App(props: AppProps) { return ( <> <Head> <meta name="description" content="Hello world!" /> </Head> <props.Component /> </> );}
Version Info