Basic
A basic page created with the Get
helper.
tsx
import { Get } from "ovr";
export const page = new Get("/demo/basic", (c) => {
c.head(<title>Basic</title>);
return <h1>Basic</h1>;
});
A basic page created with the Get
helper.
import { Get } from "ovr";
export const page = new Get("/demo/basic", (c) => {
c.head(<title>Basic</title>);
return <h1>Basic</h1>;
});