22 lines
498 B
JavaScript
22 lines
498 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { initSettings, toggleSetting, handleUpstreamChange, setUpstream } from '../actions';
|
||
|
import Settings from '../components/Settings';
|
||
|
|
||
|
const mapStateToProps = (state) => {
|
||
|
const { settings } = state;
|
||
|
const props = { settings };
|
||
|
return props;
|
||
|
};
|
||
|
|
||
|
const mapDispatchToProps = {
|
||
|
initSettings,
|
||
|
toggleSetting,
|
||
|
handleUpstreamChange,
|
||
|
setUpstream,
|
||
|
};
|
||
|
|
||
|
export default connect(
|
||
|
mapStateToProps,
|
||
|
mapDispatchToProps,
|
||
|
)(Settings);
|