init
This commit is contained in:
commit
60133a4a08
23 changed files with 529 additions and 0 deletions
5
routes/greet/[name].tsx
Normal file
5
routes/greet/[name].tsx
Normal file
|
@ -0,0 +1,5 @@
|
|||
import { PageProps } from "$fresh/server.ts";
|
||||
|
||||
export default function Greet(props: PageProps) {
|
||||
return <div>Hello {props.params.name}</div>;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue