Merge remote-tracking branch 'origin/v3.4' into dev

This commit is contained in:
proddy
2022-01-23 17:56:52 +01:00
parent 02e2b51814
commit 77e1898512
538 changed files with 32282 additions and 38655 deletions

View File

@@ -1,14 +1,15 @@
import React from 'react';
import { render } from 'react-dom';
import ReactDOM from 'react-dom';
import history from './history';
import { Router } from 'react-router';
import { BrowserRouter } from 'react-router-dom';
import App from './App';
render(
<Router history={history}>
<App />
</Router>,
ReactDOM.render(
<React.StrictMode>
<BrowserRouter>
<App />
</BrowserRouter>
</React.StrictMode>,
document.getElementById('root')
);