import type { Meta, StoryObj } from '@storybook/react-vite'; import { TableEmpty } from './TableEmpty'; const meta: Meta = { title: 'UI kit/Table/TableEmpty', component: TableEmpty, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = { args: {}, }; export const CustomText: Story = { args: { children: 'Custom empty state text', }, };