50d7b3ab70
Also display a Learn More link pointing to the appropriate faq.
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import { doQuit, doSkipWrongDaemonNotice } from "actions/app";
|
|
import ModalIncompatibleDaemon from "./view";
|
|
|
|
const select = state => ({});
|
|
|
|
const perform = dispatch => ({
|
|
quit: () => dispatch(doQuit()),
|
|
});
|
|
|
|
export default connect(select, perform)(ModalIncompatibleDaemon);
|