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