17 lines
427 B
JavaScript
17 lines
427 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doChannelSubscribe, doChannelUnsubscribe } from 'redux/actions/subscriptions';
|
|
import { doOpenModal } from 'redux/actions/app';
|
|
import { doToast } from 'lbry-redux';
|
|
import ShareButton from './view';
|
|
|
|
const select = (state, props) => ({});
|
|
|
|
export default connect(
|
|
select,
|
|
{
|
|
doChannelSubscribe,
|
|
doChannelUnsubscribe,
|
|
doOpenModal,
|
|
doToast,
|
|
}
|
|
)(ShareButton);
|