7 lines
154 B
TypeScript
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);
|