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

28 lines
608 B
TypeScript

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