refactor(dev): move DemoPanel into src/dev

DemoPanel is dev-only tooling like the rest of the UI Lab mock code, so it
lives with it now instead of among the real UI components. Import path in
App.tsx updated; the DEV gating (and production tree-shaking) is unchanged.
This commit is contained in:
2026-07-05 13:38:52 +01:00
parent aa3fe2062d
commit 79e2e28979
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ import { UpdateToast } from './components/UpdateToast'
import { WhatsNewToast } from './components/WhatsNewToast' import { WhatsNewToast } from './components/WhatsNewToast'
import { WhatsNewModal } from './components/WhatsNewModal' import { WhatsNewModal } from './components/WhatsNewModal'
import { OnboardingOverlay } from './components/onboarding/OnboardingOverlay' import { OnboardingOverlay } from './components/onboarding/OnboardingOverlay'
import { DemoPanel } from './components/DemoPanel' import { DemoPanel } from './dev/DemoPanel'
import { initializeNotifications } from './notifications' import { initializeNotifications } from './notifications'
export default function App() { export default function App() {