-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathapp.js
More file actions
44 lines (34 loc) · 811 Bytes
/
app.js
File metadata and controls
44 lines (34 loc) · 811 Bytes
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
43
44
// @flow
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { loadApp } from 'actions/app';
import type { Dispatch } from 'actions/index';
import type { State } from 'reducers/index';
import styles from './app.css';
type StateProps = {
loaded: boolean
}
type Props = StateProps & {
dispatch: Dispatch
}
export class AppContainer extends Component<Props> {
componentDidMount() {
const { dispatch } = this.props;
dispatch(loadApp());
}
render() {
const { loaded } = this.props;
if (!loaded) {
return null;
}
return (
<div className={styles.container} />
);
}
}
function mapStateToProperties(state: State) {
return {
loaded: state.app.loaded
};
}
export default connect(mapStateToProperties)(AppContainer);