Files
masto-fe-archos/app/javascript/mastodon/features/getting_started/containers/trends_container.js
2025-10-12 13:42:02 +02:00

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);