Skip to main content
Module

x/fastro/pages/user.page.tsx

Fast and simple web application framework for deno
Go to Latest
File
import React from "react";
export default function User({ data }: { data: string }) { return <h1>Hello {data}</h1>;}