spee.ch/react/containers/PublishTitleInput/index.js

20 lines
423 B
JavaScript
Raw Normal View History

2018-01-17 19:49:57 +01:00
import {connect} from 'react-redux';
import {updateMetadata} from '../../actions';
import View from './view.jsx';
const mapStateToProps = state => {
return {
title: state.metadata.title,
};
};
const mapDispatchToProps = dispatch => {
return {
onMetadataChange: (name, value) => {
dispatch(updateMetadata(name, value));
},
};
}
export default connect(mapStateToProps, mapDispatchToProps)(View);