import { Meta, StoryObj } from '@storybook/react'; import { Flex, Menu, Table } from '..'; import { DotsThreeVertical } from '@phosphor-icons/react'; const meta: Meta = { title: 'HTML-Like Component/Table', component: Table, tags: ['autodocs'], parameters: { layout: 'centered', }, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: {}, render: (args) => ( Column 1 Column 2 Column 3 Cell 1 Cell 2 Option 1 Option 1 Option 1 Cell 4 Cell 5{' '} Option 1 Option 1 Option 1 Cell 7 Cell 8{' '} Option 1 Option 1 Option 1
), };