mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
10 lines
307 B
JavaScript
10 lines
307 B
JavaScript
import { connect } from 'react-redux';
|
|
import { getSuggestions } from '../../../selectors';
|
|
import SuggestionsBox from '../components/suggestions_box';
|
|
|
|
const mapStateToProps = (state) => ({
|
|
accounts: getSuggestions(state)
|
|
});
|
|
|
|
export default connect(mapStateToProps)(SuggestionsBox);
|