mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-16 03:43:08 +00:00
9 lines
274 B
JavaScript
9 lines
274 B
JavaScript
import { connect } from 'react-redux';
|
|
import SuggestionsBox from '../components/suggestions_box';
|
|
|
|
const mapStateToProps = (state) => ({
|
|
accountIds: state.getIn(['user_lists', 'suggestions'])
|
|
});
|
|
|
|
export default connect(mapStateToProps)(SuggestionsBox);
|