mastodon/app/assets/javascripts/components/features/notifications/containers/column_settings_container.jsx

18 lines
478 B
JavaScript

import { connect } from 'react-redux';
import ColumnSettings from '../components/column_settings';
import { changeSetting } from '../../../actions/settings';
const mapStateToProps = state => ({
settings: state.getIn(['settings', 'notifications'])
});
const mapDispatchToProps = dispatch => ({
onChange (key, checked) {
dispatch(changeSetting(['notifications', ...key], checked));
}
});
export default connect(mapStateToProps, mapDispatchToProps)(ColumnSettings);