mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 12:38:41 +00:00
### _Draft until available to address feedback and merge on Monday – ready for review_ ## Addresses #16472 - Full accounting of features in linked ticket <img width="1676" alt="Screenshot 2024-02-07 at 10 24 03 PM" src="https://github.com/fleetdm/fleet/assets/61553566/aa0cd3b5-9191-4078-b57c-ee451dc5c632"> <img width="909" alt="Screenshot 2024-02-07 at 10 38 52 PM" src="https://github.com/fleetdm/fleet/assets/61553566/ea1b0067-bb91-4502-bde0-0e36914a0829"> ## Checklist for submitter - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
18 lines
344 B
TypeScript
18 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 = {};
|