2019-07-08 22:54:58 +02:00
|
|
|
import { connect } from 'react-redux';
|
2020-07-15 15:50:08 +02:00
|
|
|
import { selectBlockedChannels } from 'redux/selectors/blocked';
|
2019-07-08 22:54:58 +02:00
|
|
|
import ListBlocked from './view';
|
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
uris: selectBlockedChannels(state),
|
|
|
|
});
|
|
|
|
|
2020-07-15 15:50:08 +02:00
|
|
|
export default connect(select, null)(ListBlocked);
|