selectors.ts 192 B

1234
  1. import { RootState, FetchStatus } from 'redux/interfaces';
  2. export const createFetchingSelector = (action: string) =>
  3. (state: RootState) => (state.loader[action] || FetchStatus.notFetched);