mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
15 lines
262 B
TypeScript
15 lines
262 B
TypeScript
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
import history from './history';
|
|
import { Router } from 'react-router';
|
|
|
|
import App from './App';
|
|
|
|
render(
|
|
<Router history={history}>
|
|
<App />
|
|
</Router>,
|
|
document.getElementById('root')
|
|
);
|