Display follow suggestions
This commit is contained in:
parent
e21a3fe0cd
commit
20f581f796
8 changed files with 146 additions and 6 deletions
|
@ -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);
|
Loading…
Add table
Add a link
Reference in a new issue