-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import type { Meta, StoryObj } from "@storybook/react";
import * as HelpDialog from "./HelpDialog.ts";
export default {
component: HelpDialog.Root,
args: {
children: (
<>
<HelpDialog.Trigger>なにかの説明</HelpDialog.Trigger>
<HelpDialog.Content>
<HelpDialog.Title>なにかの説明</HelpDialog.Title>
<HelpDialog.Description>メインな説明</HelpDialog.Description>
<HelpDialog.Paragraph>お供な説明</HelpDialog.Paragraph>
</HelpDialog.Content>
</>
),
},
} satisfies Meta<(typeof HelpDialog)["Root"]>;
type Story = StoryObj<(typeof HelpDialog)["Root"]>;
export const Defaults: Story = {};