2895e93323
* missing yarn lock * rm modal youtube welcome * prune some isAuthenticated * remove invite components * remove reward/verify components * more odysee feature cleanup
16 lines
507 B
JavaScript
16 lines
507 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doEnterSettingsPage, doExitSettingsPage } from 'redux/actions/settings';
|
|
import { selectDaemonSettings } from 'redux/selectors/settings';
|
|
|
|
import SettingsPage from './view';
|
|
|
|
const select = (state) => ({
|
|
daemonSettings: selectDaemonSettings(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
enterSettings: () => dispatch(doEnterSettingsPage()),
|
|
exitSettings: () => dispatch(doExitSettingsPage()),
|
|
});
|
|
|
|
export default connect(select, perform)(SettingsPage);
|