dimensionlab-website/src/lib/ui/components/FooterStatusCell.tsx

6 lines
198 B
TypeScript

import type { UiStatusItem } from "../types";
import { FooterCell } from "./FooterCell";
export function FooterStatusCell({ item }: { item: UiStatusItem }) {
return <FooterCell item={item} />;
}