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