13 lines
316 B
JavaScript
13 lines
316 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);
|