DenReg/jsx-html/examples/04.tsx

9 lines
180 B
TypeScript
Raw Normal View History

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