mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
18 lines
419 B
TypeScript
18 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 = {};
|