Adding following/followers lists to the UI

This commit is contained in:
Eugen Rochko
2016-10-27 21:59:56 +02:00
parent 909d0d5e88
commit 1c84d505c8
16 changed files with 369 additions and 30 deletions

View File

@@ -22,10 +22,10 @@ export function fetchSuggestionsRequest() {
};
};
export function fetchSuggestionsSuccess(suggestions) {
export function fetchSuggestionsSuccess(accounts) {
return {
type: SUGGESTIONS_FETCH_SUCCESS,
suggestions: suggestions
accounts: accounts
};
};