Skip to main content
Module

x/fastro/pages/user.tsx

Fast and simple web application framework for deno
Go to Latest
File
// deno-lint-ignore-file no-explicit-anyimport React from "https://esm.sh/react@18.2.0";
// you can access injected props from server directlyconst User = (props: any) => ( <div className="container"> <h1> <a href={props.data + "/count"}>Hello {props.data}</a> </h1> </div>);
export default User;