selectors.ts 181 B

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