mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
10 lines
230 B
TypeScript
10 lines
230 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();
|