lbry-desktop/ui/js/modal/modalAuthFailure/index.js

13 lines
312 B
JavaScript
Raw Normal View History

2017-08-03 00:55:58 +02:00
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()),
});
2017-09-08 05:15:05 +02:00
export default connect(null, null)(ModalAuthFailure);