import type { Meta, StoryObj } from "@storybook/react-vite"; import { FooterStatusCell } from "../components/FooterStatusCell"; import { statusItems } from "./story-data"; const meta = { title: "UI/FooterStatusCell", component: FooterStatusCell, args: { item: statusItems.degraded, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Warning: Story = {};