mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
19 lines
344 B
TypeScript
19 lines
344 B
TypeScript
|
|
import { Meta, StoryObj } from "@storybook/react";
|
||
|
|
|
||
|
|
import DataSet from "./DataSet";
|
||
|
|
|
||
|
|
const meta: Meta<typeof DataSet> = {
|
||
|
|
title: "Components/DataSet",
|
||
|
|
component: DataSet,
|
||
|
|
args: {
|
||
|
|
title: "Data set",
|
||
|
|
value: "This is the value",
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default meta;
|
||
|
|
|
||
|
|
type Story = StoryObj<typeof DataSet>;
|
||
|
|
|
||
|
|
export const Basic: Story = {};
|