import { Meta, StoryObj } from "@storybook/react"; import { ChipGroupField } from "."; import { Label } from "../Atoms/Label"; import { Chip } from "@components/Chips/Chip"; export default { title: "Fields/ChipGroupField", component: ChipGroupField, parameters: { layout: "centered", }, } as Meta; type Story = StoryObj; export const Primary: Story = { args: { children: [ , Chip 1 Chip 2 Chip 3 , ], }, };