import type { Meta, StoryObj } from "@storybook/react" import { FeedbackActivityTable, FeedbackSampleData } from "./activity-table" const meta: Meta = { title: "Widgets/Support/Feedback/ActivityTable", component: FeedbackActivityTable, parameters: { layout: "fullscreen", }, tags: ["autodocs"], argTypes: { showCategories: { control: "boolean", description: "Whether to show category headers", }, }, decorators: [ (Story) => (
), ], } export default meta type Story = StoryObj export const Default: Story = { args: { showCategories: true, }, } export const WithoutCategories: Story = { args: { showCategories: false, }, } export const SampleData: Story = { render: () => , parameters: { docs: { description: { story: "Example of captured feedback data with real values", }, }, }, }