fleet/frontend/components/TableContainer/DataTable/SetupSoftwareStatusCell/SetupSoftwareStatusCell.stories.tsx
2026-05-05 08:55:36 -04:00

28 lines
625 B
TypeScript

import { Meta, StoryObj } from "@storybook/react";
import SetupSoftwareStatusCell from "./SetupSoftwareStatusCell";
const meta: Meta<typeof SetupSoftwareStatusCell> = {
title: "Components/TableContainer/SetupSoftwareStatusCell",
component: SetupSoftwareStatusCell,
};
export default meta;
type Story = StoryObj<typeof SetupSoftwareStatusCell>;
export const Pending: Story = {
args: { status: "pending" },
};
export const Installing: Story = {
args: { status: "running" },
};
export const Installed: Story = {
args: { status: "success" },
};
export const Failure: Story = {
args: { status: "failure" },
};