spee.ch/client/containers/PublishThumbnailInput/index.js

16 lines
318 B
JavaScript
Raw Normal View History

2018-02-05 18:14:12 -08:00
import { connect } from 'react-redux';
import { onNewThumbnail } from 'actions/publish';
2018-01-17 15:00:03 -08:00
import View from './view';
2018-01-17 10:49:57 -08:00
const mapStateToProps = ({ publish: { file } }) => {
2018-01-17 10:49:57 -08:00
return {
file,
2018-01-17 10:49:57 -08:00
};
};
const mapDispatchToProps = {
onNewThumbnail,
2018-01-17 10:49:57 -08:00
};
export default connect(mapStateToProps, mapDispatchToProps)(View);