lbry-desktop/ui/js/component/modalAuthFailure/index.js
2017-08-02 18:55:58 -04:00

13 lines
317 B
JavaScript

import React from "react";
import { connect } from "react-redux";
import { doCloseModal } from "actions/app";
import ModalAuthFailure from "./view";
const select = state => ({});
const perform = dispatch => ({
close: () => dispatch(doCloseModal()),
});
export default connect(select, perform)(ModalAuthFailure);