From f05a391d0278e1b9465a26cfaf7d4fb9d69c440e Mon Sep 17 00:00:00 2001 From: OG T Date: Thu, 9 Apr 2026 10:42:30 +0800 Subject: [PATCH] =?UTF-8?q?feat(web):=20panels/index.ts=20=E5=8C=AF?= =?UTF-8?q?=E5=87=BA=20+=20Panel=20=E6=8A=BD=E5=8F=96=E9=80=B2=E5=BA=A6?= =?UTF-8?q?=E6=A8=99=E8=A8=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/components/panels/index.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 apps/web/src/components/panels/index.ts diff --git a/apps/web/src/components/panels/index.ts b/apps/web/src/components/panels/index.ts new file mode 100644 index 00000000..148e00d0 --- /dev/null +++ b/apps/web/src/components/panels/index.ts @@ -0,0 +1,15 @@ +/** + * Panel 元件匯出 + * Sprint 5: 供整合頁面使用的無 AppLayout 版本 + * + * 已抽取: + * - MonitoringPanel (from /monitoring) + * + * 待抽取 (暫時用 lazy import 原始頁面): + * - APMPanel, ErrorsPanel, AppsPanel, ServicesPanel + * - AutoRepairPanel, NeuralCommandPanel, DriftPanel + * - DeploymentsPanel, TicketsPanel, CostPanel, ActionLogsPanel, BillingPanel + * - SecurityPanel, CompliancePanel + */ + +export { MonitoringPanel } from './MonitoringPanel'