JSX Templating

templates for TypeScript objects, using HTML syntax

A very tiny custom JSX engine is provided. To use it, create a .tsx file in ./client/src, like so:

1
2
3
4
5
import * as JSX from "./jsx";

export function myComponent() {
return <div>Check out this JSX!</div>;
}