lbry-desktop/src/renderer/component/externalLink/index.js

11 lines
297 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { doNotify } from 'lbry-redux';
import ExternalLink from './view';
const select = () => ({});
const perform = dispatch => ({
openModal: (modal, props) => dispatch(doNotify(modal, props)),
});
export default connect(select, perform)(ExternalLink);