Skip to main content
Module

x/fastro/pages/user.tsx

The Web Framework for Full Stack Apps
Go to Latest
File
import React from "https://esm.sh/react@18.2.0?dev";
// User component with props get from the server handlerexport default function User(props: { data: string }) { return <h1>Hello {props.data}</h1>;}