Spaces:
Sleeping
Sleeping
File size: 146 Bytes
d31dfe1 |
1 2 3 4 5 6 |
import { PageProps } from "$fresh/server.ts";
export default function Greet(props: PageProps) {
return <div>Hello {props.params.name}</div>;
}
|