parent
a5e45820cc
commit
4eef2c57cf
@ -1,18 +1,12 @@ |
|||||||
const inherits = require('util').inherits |
const inherits = require('util').inherits |
||||||
const Component = require('react').Component |
const Component = require('react').Component |
||||||
const h = require('react-hyperscript') |
const h = require('react-hyperscript') |
||||||
const connect = require('react-redux').connect |
|
||||||
const ReactCSSTransitionGroup = require('react-addons-css-transition-group') |
const ReactCSSTransitionGroup = require('react-addons-css-transition-group') |
||||||
|
|
||||||
module.exports = connect(mapStateToProps)(LoadingIndicator) |
|
||||||
|
|
||||||
function mapStateToProps (state) { |
|
||||||
return { |
|
||||||
isLoading: state.appState.isLoading, |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
inherits(LoadingIndicator, Component) |
inherits(LoadingIndicator, Component) |
||||||
|
module.exports = LoadingIndicator |
||||||
|
|
||||||
function LoadingIndicator () { |
function LoadingIndicator () { |
||||||
Component.call(this) |
Component.call(this) |
||||||
} |
} |
Loading…
Reference in new issue