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

14 lines
359 B
JavaScript
Raw Normal View History

2018-01-17 19:49:57 +01:00
import { connect } from 'react-redux';
2018-01-18 18:33:26 +01:00
import { updateLoggedInChannel } from 'actions/channel';
2018-01-18 00:00:03 +01:00
import View from './view';
2018-01-17 19:49:57 +01:00
const mapDispatchToProps = dispatch => {
return {
onChannelLogin: (name, shortId, longId) => {
dispatch(updateLoggedInChannel(name, shortId, longId));
},
};
};
export default connect(null, mapDispatchToProps)(View);