11 lines
310 B
JavaScript
11 lines
310 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { doOpenModal } from 'redux/actions/app';
|
||
|
import ExternalLink from './view';
|
||
|
|
||
|
const select = () => ({});
|
||
|
const perform = dispatch => ({
|
||
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
||
|
});
|
||
|
|
||
|
export default connect(select, perform)(ExternalLink);
|