lbry-desktop/ui/component/channelMuteButton/index.js
2022-11-03 14:26:45 -04:00

12 lines
291 B
JavaScript

import { connect } from 'react-redux';
import { doChannelMute, doChannelUnmute } from 'redux/actions/blocked';
import ChannelMuteButton from './view';
const select = () => ({
isMuted: false,
});
export default connect(select, {
doChannelMute,
doChannelUnmute,
})(ChannelMuteButton);