import { Meta, StoryObj } from "@storybook/react"; import { FormatTable } from "."; export default { title: "Format/FormatTable", component: FormatTable, } as Meta; type Story = StoryObj; export const Primary: Story = { args: { columns: [ { key: "name", title: "Name" }, { key: "age", title: "Age" }, ], value: [ { key: "alice", name: "Alice", age: 25 }, { key: "bob", name: "Bob", age: 30 }, ], }, };