lbry-desktop/src/renderer/modal/modalError/index.js

11 lines
283 B
JavaScript
Raw Normal View History

import React from 'react';
import { connect } from 'react-redux';
import { doCloseModal } from 'redux/actions/app';
import ModalError from './view';
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2017-06-06 23:19:12 +02:00
closeModal: () => dispatch(doCloseModal()),
2017-06-06 06:21:55 +02:00
});
2017-04-07 07:15:22 +02:00
2017-09-08 05:15:05 +02:00
export default connect(null, perform)(ModalError);