lbry-desktop/ui/component/externalLink/index.js
2019-11-11 13:27:29 -05:00

14 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);