mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-15 19:47:57 +01:00
00d73f716e
adding back semicolons * adding back semicolons
10 lines
232 B
TypeScript
10 lines
232 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();
|