538a41c617
* Added Loader to indicate loading of sketches * Fixed styles * Changed styles * remove prefixes * Issues Fixed: * added Loader * Refactor * Issues Fixed * clean up loader functions
9 lines
211 B
JavaScript
9 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 };
|
|
}
|