Created
January 5, 2019 23:20
-
-
Save fxlrnrpt/37dec78bde06d7e459b1b82d4e7d10b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const makeSelectorCatNames = () => | |
| createSelector( | |
| (state) => state.cats.data, | |
| (cats) => cats.data.reduce((accum, { name }) => `${accum} ${name}`, ''), | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment