18 lines
496 B
JavaScript
18 lines
496 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { getSettings, changeSetting } from '../../../actions/settings';
|
|
import ColumnSettings from '../components/column_settings';
|
|
|
|
const mapStateToProps = state => ({
|
|
settings: getSettings(state).get('public'),
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
onChange(key, checked) {
|
|
dispatch(changeSetting(['public', ...key], checked));
|
|
},
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ColumnSettings);
|