2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doQuit, doSkipWrongDaemonNotice } from 'redux/actions/app';
|
|
|
|
import ModalIncompatibleDaemon from './view';
|
2017-07-19 23:05:08 +02:00
|
|
|
|
|
|
|
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);
|