fleet/frontend/components/TableContainer/DataTable/TextCell/TextCell.stories.tsx
Gabriel Hernandez d027036985
add figma to storybook and a couple new stories (#11521)
add figma addon to storybook that allows us to link figma designed to
our storybook
2023-05-09 16:53:43 +01:00

14 lines
277 B
TypeScript

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