d97a23b699
I believe it was just due to copy/pasting from another file and not renaming it.
10 lines
312 B
JavaScript
10 lines
312 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doOpenModal } from 'redux/actions/app';
|
|
import MarkdownLink from './view';
|
|
|
|
const select = () => ({});
|
|
const perform = (dispatch) => ({
|
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
|
});
|
|
|
|
export default connect(select, perform)(MarkdownLink);
|