blackbirdchess-docker-dev/react/src/store/Loader/LoaderAction.js
2020-11-16 17:14:34 +01:00

14 lines
247 B
JavaScript

import * as types from "./LoaderTypes";
export const loader = isLoading => {
return isLoading
? {
type: types.SHOW_LOADER,
data: isLoading
}
: {
type: types.HIDE_LOADER,
data: isLoading
};
};