summaryrefslogtreecommitdiff
path: root/cli/tests/046_jsx_test.tsx
blob: a96e90bafd69e8562df11b744d101a0e5b4edd61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 />);