import type { Meta, StoryObj } from "@storybook/react-vite"; import { ServiceGroupPanel } from "../index"; import { serviceGroups } from "./story-data"; const meta = { title: "UI/ServiceGroupPanel", component: ServiceGroupPanel, args: { group: serviceGroups.mixed, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Mixed: Story = {};