mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-16 03:57:55 +01:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import App from './app'
|
|
|
|
async function bootstrapApplication() {
|
|
ReactDOM.render(<App />, document.getElementById('root') as HTMLElement)
|
|
}
|
|
|
|
bootstrapApplication()
|