about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/compose/containers/search_results_container.js
blob: 7273460e28191580547213c444d530522ac6a9bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { connect } from 'react-redux';
import SearchResults from '../components/search_results';
import { fetchTrends } from '../../../actions/trends';

const mapStateToProps = state => ({
  results: state.getIn(['search', 'results']),
  trends: state.get('trends'),
});

const mapDispatchToProps = dispatch => ({
  fetchTrends: () => dispatch(fetchTrends()),
});

export default connect(mapStateToProps, mapDispatchToProps)(SearchResults);