blob: 215fca2f42593bde6ccba1b9e56dc0d209631633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// @flow
/**
* AtlasKit components will deflect from appearance if css-reset is not present.
*/
import '@atlaskit/css-reset';
import React, { Component } from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';
import { App } from './features/app';
import { persistor, store } from './features/redux';
/**
* Component encapsulating App component with redux store using provider.
*/
class Root extends Component<*> {
/**
* Implements React's {@link Component#render()}.
*
* @returns {ReactElement}
*/
render() {
return (
<Provider store = { store }>
<PersistGate
loading = { null }
persistor = { persistor }>
<App />
</PersistGate>
</Provider>
);
}
}
/**
* Render the main / root application.
* $FlowFixMe
*/
render(<Root />, document.getElementById('app'));
|