d4592bbfcd
* Add explore page to web UI * Fix not removing loaded statuses from trends on mute/block action
13 lines
413 B
JavaScript
13 lines
413 B
JavaScript
import { connect } from 'react-redux';
|
|
import { fetchTrendingHashtags } from 'mastodon/actions/trends';
|
|
import Trends from '../components/trends';
|
|
|
|
const mapStateToProps = state => ({
|
|
trends: state.getIn(['trends', 'tags', 'items']),
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
fetchTrends: () => dispatch(fetchTrendingHashtags()),
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Trends);
|