lbry-desktop/ui/modal/modalMinChannelAge/index.js
infinite-persistence 8ace40522e
Add modal to change "min channel age"
It'll be easier to handle through a modal -- we won't need to debounce the values, and it also clears up the clutter from 'settingsCreator'
2022-02-23 23:01:56 +08:00

9 lines
226 B
JavaScript

import { connect } from 'react-redux';
import ModalMinChannelAge from './view';
import { doHideModal } from 'redux/actions/app';
const perform = {
doHideModal,
};
export default connect(null, perform)(ModalMinChannelAge);