chore: Update dependencies

This commit is contained in:
Maksim Eltyshev
2022-11-21 00:54:05 +01:00
parent 5381d45e50
commit b0d23373c0
22 changed files with 12561 additions and 15980 deletions

View File

@@ -1,10 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { createRoot } from 'react-dom/client';
import store from './store';
import history from './history';
import store, { history } from './store';
import Root from './components/Root';
import './i18n';
ReactDOM.render(React.createElement(Root, { store, history }), document.getElementById('root'));
const root = createRoot(document.getElementById('root'));
root.render(React.createElement(Root, { store, history }));