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