Display follow suggestions
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
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);
|
Reference in New Issue
Block a user