spee.ch/react/containers/PublishTool/index.js

13 lines
278 B
JavaScript
Raw Normal View History

2018-01-17 10:49:57 -08:00
import {connect} from 'react-redux';
2018-01-17 15:00:03 -08:00
import View from './view';
2018-01-17 10:49:57 -08:00
2018-01-18 09:33:26 -08:00
const mapStateToProps = ({ publish }) => {
2018-01-17 10:49:57 -08:00
return {
2018-03-12 13:57:55 -07:00
disabled: publish.disabled,
file : publish.file,
status : publish.status.status,
2018-01-17 10:49:57 -08:00
};
};
export default connect(mapStateToProps, null)(View);