lbry-desktop/ui/page/listBlocked/index.js
2019-11-11 13:27:29 -05:00

13 lines
253 B
JavaScript

import { connect } from 'react-redux';
import { selectBlockedChannels } from 'lbry-redux';
import ListBlocked from './view';
const select = state => ({
uris: selectBlockedChannels(state),
});
export default connect(
select,
null
)(ListBlocked);