summaryrefslogtreecommitdiff
path: root/cli/tests/046_jsx_test.tsx
blob: 857d24d36b93c736bde5dd34f54b46f31dd5fb7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare namespace JSX {
  interface IntrinsicElements {
    [elemName: string]: any;
  }
}
const React = {
  createElement(factory: any, props: any, ...children: any[]) {
    return { factory, props, children };
  },
};
const View = () => (
  <div class="deno">land</div>
);
console.log(<View />);