mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
17 lines
419 B
TypeScript
17 lines
419 B
TypeScript
import { Meta, StoryObj } from "@storybook/react";
|
|
|
|
import LogDestinationIndicator from "./LogDestinationIndicator";
|
|
|
|
const meta: Meta<typeof LogDestinationIndicator> = {
|
|
title: "Components/LogDestinationIndicator",
|
|
component: LogDestinationIndicator,
|
|
args: {
|
|
logDestination: "filesystem",
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof LogDestinationIndicator>;
|
|
|
|
export const Basic: Story = {};
|