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