p5.js-web-editor/client/modules/IDE/actions/loader.js

10 lines
211 B
JavaScript

import * as ActionTypes from '../../../constants';
export function startLoader() {
return { type: ActionTypes.START_LOADING };
}
export function stopLoader() {
return { type: ActionTypes.STOP_LOADING };
}