mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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);
|