mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
16 lines
438 B
TypeScript
16 lines
438 B
TypeScript
|
|
import { Meta, StoryObj } from "@storybook/react";
|
||
|
|
|
||
|
|
import HostStatusWebhookPreviewModal from "./HostStatusWebhookPreviewModal";
|
||
|
|
|
||
|
|
const meta: Meta<typeof HostStatusWebhookPreviewModal> = {
|
||
|
|
title: "Components/HostStatusWebhookPreviewModal",
|
||
|
|
component: HostStatusWebhookPreviewModal,
|
||
|
|
args: { isTeamScope: false },
|
||
|
|
};
|
||
|
|
|
||
|
|
export default meta;
|
||
|
|
|
||
|
|
type Story = StoryObj<typeof HostStatusWebhookPreviewModal>;
|
||
|
|
|
||
|
|
export const Basic: Story = {};
|