@resourge/react-fetch
Version:
[](LICENSE)
25 lines (22 loc) • 600 B
JavaScript
/**
* react-fetch v1.41.3
*
* Copyright (c) resourge.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
import { GlobalLoading } from './GlobalLoading';
import { jsx } from 'react/jsx-runtime';
const globalColor = '#00BFFF';
let globalLoading = jsx(GlobalLoading, {
color: globalColor
});
function setGlobalLoading(_globalLoading) {
globalLoading = _globalLoading;
return globalLoading;
}
export { globalColor, globalLoading, setGlobalLoading };
//# sourceMappingURL=constants.js.map