Choices/src/scripts/actions/general.js
Josh Johnson 437651411f
Fix render blocking (#456)
* Reapply changes from PR #310

* Version 4.1.1

* Update action name

* Update test

* Resolved broken test
2019-01-26 12:36:47 +00:00

7 lines
138 B
JavaScript

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