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

16 lines
465 B
JavaScript
Raw Normal View History

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