import type { Meta, StoryObj } from "@storybook/react" import { SupportActivityTable } from "./activity-table" const meta: Meta = { title: "Widgets/Support/ActivityTable", component: SupportActivityTable, parameters: { layout: "fullscreen", }, tags: ["autodocs"], decorators: [ (Story) => (
), ], } export default meta type Story = StoryObj export const Default: Story = { args: {}, decorators: [ (Story) => (
), ], parameters: { docs: { description: { story: "Unified activity feed showing all support item types: Feedback, Contact, Bug Reports, Error Reports, and Resolutions. Header stays fixed when scrolling. Table expands to fill available height.", }, }, }, }