refactor(ui): organize component source tree

This commit is contained in:
vince 2026-06-20 06:43:09 +02:00
parent 8927f2ab8a
commit 32ad2cebe4
66 changed files with 194 additions and 124 deletions

View file

@ -1,14 +1,16 @@
import { renderToString } from "react-dom/server";
import { describe, expect, test } from "vitest";
import { Button } from "./Button";
import { DashboardFrame } from "./DashboardFrame";
import { FooterCell } from "./FooterCell";
import { IconButton } from "./IconButton";
import { ServiceRow } from "./ServiceRow";
import { StatusStrip } from "./StatusStrip";
import { TelemetryCard } from "./TelemetryCard";
import { TelemetryGrid } from "./TelemetryGrid";
import { ThemeToggle } from "./ThemeToggle";
import {
Button,
DashboardFrame,
FooterCell,
IconButton,
ServiceRow,
StatusStrip,
TelemetryCard,
TelemetryGrid,
ThemeToggle,
} from "../index";
import { dashboardPreviewFixtures } from "../fixtures";
describe("dashboard UI components", () => {