orb-ui-firebase
Version:
Firebase with redux
20 lines (18 loc) • 347 B
JavaScript
import * as types from './types';
export function logLoading(location) {
return {
type: types.LOG_LOADING,
location: location
};
}
export function clearLoading(location) {
return {
type: types.CLEAR_LOADING,
location: location
};
}
export function clearAllLoadings() {
return {
type: types.CLEAR_ALL_LOADINGS
};
}