We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad8409 commit 1c1a671Copy full SHA for 1c1a671
packages/block-editor/src/components/link-control/stories/index.story.tsx
@@ -0,0 +1,29 @@
1
+/**
2
+ * External dependencies
3
+ */
4
+import type { Meta, StoryObj } from '@storybook/react';
5
+
6
7
+ * Internal dependencies
8
9
+import LinkControl from '../';
10
11
+const meta: Meta< typeof LinkControl > = {
12
+ component: LinkControl,
13
+ title: 'BlockEditor/LinkControl',
14
+ // argTypes: {
15
+ // children: { control: { type: null } },
16
+ // },
17
+ parameters: {
18
+ controls: { expanded: true },
19
+ docs: { canvas: { sourceState: 'shown' } },
20
+ },
21
+};
22
23
+export default meta;
24
25
+export const Default: StoryObj< typeof LinkControl > = {
26
+ // args: {
27
+ // children: <LinkControl />,
28
29
0 commit comments