lbry-desktop/ui/page/listBlocked/index.js
2020-07-15 09:52:08 -04:00

10 lines
260 B
JavaScript

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