1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

ref: Little refactoring

This commit is contained in:
Maksim Eltyshev 2022-11-21 01:12:32 +01:00
parent e32125ddfa
commit 8069545fa9

View file

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