2017-07-19 17:05:08 -04:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
2017-11-13 16:02:23 -05:00
|
|
|
import { doQuit, doSkipWrongDaemonNotice } from "redux/actions/app";
|
2017-07-19 17:05:08 -04:00
|
|
|
import ModalIncompatibleDaemon from "./view";
|
|
|
|
|
|
|
|
const select = state => ({});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2017-07-30 00:52:17 +05:30
|
|
|
quit: () => dispatch(doQuit()),
|
2017-07-19 17:05:08 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, perform)(ModalIncompatibleDaemon);
|