- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
19 lines
613 B
JavaScript
19 lines
613 B
JavaScript
'use client';
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "LoadableContext", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return LoadableContext;
|
|
}
|
|
});
|
|
const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
|
|
const _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
const LoadableContext = _react.default.createContext(null);
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
LoadableContext.displayName = 'LoadableContext';
|
|
}
|
|
|
|
//# sourceMappingURL=loadable-context.shared-runtime.js.map
|