import { PageProps } from "$fresh/server.ts"; export default function Greet(props: PageProps) { return
Hello {props.params.name}
; }