Files
EMS-ESP32/interface/src/index.tsx
2021-05-14 12:45:57 +02:00

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')
);