Skip to main content
Module

x/fastro/mod.ts>FunctionComponent

Fast and simple web application framework for deno
Go to Latest
type alias FunctionComponent
import { type FunctionComponent } from "https://deno.land/x/fastro@v0.84.10/mod.ts";

Define the function component

Example:

const c = () => <div>Hello<div>
definition: (props: any) => JSX.Element