Created
June 4, 2021 18:36
-
-
Save michael-mckenna/94b60cee9528f346e20d3c03cbe9d92d 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
export const selectChannelsState = createFeatureSelector<ChannelsState>('channels'); | |
export const selectChannelList = createSelector( | |
selectChannelsState, | |
(state: ChannelsState) => state.channels | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment