import { Meta, StoryObj } from "@storybook/react"; import TextCell from "."; const meta: Meta = { title: "Components/Table/TextCell", component: TextCell, }; export default meta; type Story = StoryObj; export const Basic: Story = {};