2018-04-02 12:39:00 -04:00
|
|
|
import { connect } from 'react-redux';
|
2018-10-29 13:24:15 -04:00
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
2018-04-02 12:39:00 -04:00
|
|
|
import SelectThumbnail from './view';
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2018-10-29 13:24:15 -04:00
|
|
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
2018-04-02 12:39:00 -04:00
|
|
|
});
|
|
|
|
|
2018-06-08 00:05:45 -04:00
|
|
|
export default connect(
|
|
|
|
null,
|
|
|
|
perform
|
|
|
|
)(SelectThumbnail);
|