mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
20 lines
540 B
JavaScript
20 lines
540 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
|
import { App } from '$containers/App';
|
|
import '$styles/main.less';
|
|
|
|
import 'raleway-cyrillic';
|
|
|
|
// import { Provider } from 'react-redux';
|
|
// import { ConnectedRouter } from 'react-router-redux';
|
|
// import { PersistGate } from 'redux-persist/integration/react';
|
|
// import configureStore, { history } from '$redux/store';
|
|
// const { store, persistor } = configureStore();
|
|
|
|
export const Index = () => (
|
|
<App />
|
|
);
|
|
|
|
ReactDOM.render(<Index />, document.getElementById('index'));
|