Skip to main content
Module

x/fastro/pages/user.tsx

Fast and simple web application framework for deno
Go to Latest
File
import React from "https://esm.sh/react@18.2.0";
// you can access injected props from server directlyconst User = (props: { data: string }) => ( <h1> <a href={props.data + "/count"}>Hello {props.data}</a> </h1>);
export default User;