You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PrivacyDropdown from '../components/privacy_dropdown';
|
|
|
|
import { changeComposeVisibility } from '../../../actions/compose';
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
value: state.getIn(['compose', 'privacy']),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
|
|
|
|
onChange (value) {
|
|
|
|
dispatch(changeComposeVisibility(value));
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(PrivacyDropdown);
|