mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-28 16:01:26 +00:00
12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { doQuit } from 'redux/actions/app';
|
|
import ModalUpdateCloseAlert from './view';
|
|
|
|
const select = state => ({});
|
|
|
|
const perform = dispatch => ({
|
|
quit: () => dispatch(doSkipUpgrade()),
|
|
});
|
|
|
|
export default connect(select, perform)(ModalUpdateCloseAlert);
|