mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +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 = {};
|