mirror of
https://github.com/fleetdm/fleet
synced 2026-04-23 14:37:17 +00:00
15 lines
277 B
TypeScript
15 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 = {};
|