index.ts 253 B

1234567
  1. import { createReducer } from '@reduxjs/toolkit';
  2. import { actionIsLoading } from '../action';
  3. const reducerLoading = createReducer(false, {
  4. [actionIsLoading.type]: (_, { payload }: {payload : boolean}) => payload,
  5. });
  6. export default reducerLoading;