ea74a66dbd
* initial support for block/mute * hide blocked + muted content everywhere * add info message for blocked/muted characteristics * sort blocked list by most recent block first * add 'blocked' message on channel page for channels that you have blocked * cleanup * delete unused files * always pass mute/block list to claim_search on homepage * PR cleanup
6 lines
183 B
JavaScript
6 lines
183 B
JavaScript
import { connect } from 'react-redux';
|
|
import AbandonedChannelPreview from './view';
|
|
|
|
const select = (state, props) => ({});
|
|
|
|
export default connect(select)(AbandonedChannelPreview);
|