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);
|