Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
16 lines
415 B
JavaScript
16 lines
415 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);
|