DenReg/jsx-html/examples/02/02.tsx

7 lines
154 B
TypeScript

/// <reference path="../../jsx.d.ts" />
import { jsx } from '../../mod.ts';
const View = () => <div>Hello</div>;
(<View />).render().then(console.log);