mirror of
https://github.com/plankanban/planka.git
synced 2025-12-25 01:11:49 +03:00
12 lines
315 B
JavaScript
Executable File
12 lines
315 B
JavaScript
Executable File
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
|
|
import store from './store';
|
|
import history from './history';
|
|
import Root from './components/Root';
|
|
|
|
import './i18n';
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
|
root.render(React.createElement(Root, { store, history }));
|