feat: add Storybook component explorer
This commit is contained in:
parent
f1dc95b51c
commit
d95f064189
47 changed files with 1730 additions and 8 deletions
8
src/lib/ui/components/TelemetryStrip.svelte
Normal file
8
src/lib/ui/components/TelemetryStrip.svelte
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<script lang="ts">
|
||||
import type { UiTelemetryCard } from "../types";
|
||||
import TelemetryGrid from "./TelemetryGrid.svelte";
|
||||
|
||||
let { cards }: { cards: UiTelemetryCard[] } = $props();
|
||||
</script>
|
||||
|
||||
<TelemetryGrid {cards} />
|
||||
Loading…
Add table
Add a link
Reference in a new issue