mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-13 10:47:56 +01:00
13 lines
241 B
TypeScript
13 lines
241 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()
|
|
|