loading.js 181 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 import {IS_LOADING,IS_LOADED } from './actions' export function isLoading(){ return { type: IS_LOADING}; } export function isLoaded(){ return{type: IS_LOADED} }