Skip to content

Instantly share code, notes, and snippets.

@michael-mckenna
Created June 4, 2021 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michael-mckenna/94b60cee9528f346e20d3c03cbe9d92d to your computer and use it in GitHub Desktop.
Save michael-mckenna/94b60cee9528f346e20d3c03cbe9d92d to your computer and use it in GitHub Desktop.
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