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:
parent
1d82241d2c
commit
44e10599d7
25 changed files with 17375 additions and 0 deletions
src
25
src/index.tsx
Normal file
25
src/index.tsx
Normal 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')
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue