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