1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-05-03 16:46:41 +07:00

intial commit

This commit is contained in:
muerwre 2019-04-01 15:50:09 +07:00
parent 1d82241d2c
commit 44e10599d7
25 changed files with 17375 additions and 0 deletions

25
src/index.tsx Normal file
View file

@ -0,0 +1,25 @@
/*
LAYOUT PACKING:
https://github.com/rexxars/react-layout-pack
https://github.com/gxapplications/react-gridifier
https://github.com/STRML/react-grid-layout
*/
import * as React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';
import { configureStore } from '$redux/store';
import App from '$containers/App';
require('./styles/main.scss');
const { store, persistor } = configureStore();
render(
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<App />
</PersistGate>
</Provider>,
document.getElementById('app')
);