import type { Meta, StoryObj } from "@storybook/react-vite"; import { DataRow } from "@shared/components/DataRow"; import { ChipFlow } from "@shared/components/ChipFlow"; import { Card } from "@shared/components/Card"; const meta: Meta = { title: "Primitives/DataRow", component: DataRow, tags: ["autodocs"], parameters: { layout: "padded" }, decorators: [ (S) => (
), ], }; export default meta; type Story = StoryObj; export const Single: Story = { args: { label: "Reviewer", children: "matt@stirlingpdf.com" }, }; export const Summary: Story = { render: () => (
3 selected matt@stirlingpdf.com
), };