5bec6accc2
refactor modals and settings, clean-up CHANGELOG
12 lines
317 B
JavaScript
12 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);
|