p5.js-web-editor/client/modules/IDE/actions/editorHidden.js
2016-08-10 11:13:17 -04:00

7 lines
135 B
JavaScript

import * as ActionTypes from '../../../constants';
export function toggleBeep() {
return {
type: ActionTypes.TOGGLE_BEEP
};
}