41abbcc861
This reverts commit b9f3146180
.
12 lines
253 B
JavaScript
12 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);
|