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