Choices/src/scripts/actions/general.js

7 lines
138 B
JavaScript
Raw Normal View History

/* eslint-disable import/prefer-default-export */
export const setIsLoading = isLoading => ({
type: 'SET_IS_LOADING',
isLoading,
});