8ace40522e
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'
9 lines
226 B
JavaScript
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);
|