6 lines
157 B
TypeScript
6 lines
157 B
TypeScript
import * as ReactDOM from 'react-dom'
|
|
import {App} from './main'
|
|
|
|
|
|
|
|
export let main = () => ReactDOM.render(App(), document.getElementById("react-content"))
|