8 lines
200 B
Svelte
8 lines
200 B
Svelte
<script lang="ts">
|
|
import type { UiStatusItem } from "../types";
|
|
import FooterCell from "./FooterCell.svelte";
|
|
|
|
let { item }: { item: UiStatusItem } = $props();
|
|
</script>
|
|
|
|
<FooterCell {item} />
|