2019-05-06 22:35:04 -04:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doChannelSubscribe, doChannelUnsubscribe } from 'redux/actions/subscriptions';
|
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
2020-06-12 16:44:25 -04:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2019-05-06 22:35:04 -04:00
|
|
|
import ShareButton from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({});
|
|
|
|
|
2020-06-12 16:44:25 -04:00
|
|
|
export default connect(select, {
|
|
|
|
doChannelSubscribe,
|
|
|
|
doChannelUnsubscribe,
|
|
|
|
doOpenModal,
|
|
|
|
doToast,
|
|
|
|
})(ShareButton);
|