6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
import type { UiStatusItem } from "../../types";
|
|
import { FooterCell } from "./FooterCell";
|
|
|
|
export function FooterStatusCell({ item }: { item: UiStatusItem }) {
|
|
return <FooterCell item={item} />;
|
|
}
|