summaryrefslogtreecommitdiff
path: root/cli/tests/046_jsx_test.tsx
blob: 4e9380eb8f6df59311eb0fac8ea493f9ffcad385 (plain)
1
2
3
4
5
6
7
8
9
const React = {
  createElement(factory: any, props: any, ...children: any[]) {
    return {factory, props, children}
  }
}
const View = () => (
  <div class="deno">land</div>
)
console.log(<View />)