mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
6 lines
228 B
TypeScript
6 lines
228 B
TypeScript
import * as ReactDom from "https://esm.sh/react-dom@17.0.1"
|
|
import * as React from "https://esm.sh/react@17.0.1"
|
|
|
|
const { document } = window as any
|
|
|
|
ReactDom.render(React.createElement('p', null, 'hello world!'), document.body) |