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

7 lines
154 B
TypeScript
Raw Normal View History

2020-10-14 00:56:11 +00:00
/// <reference path="../../jsx.d.ts" />
import { jsx } from '../../mod.ts';
const View = () => <div>Hello</div>;
(<View />).render().then(console.log);