Skip to content

Commit 1c1a671

Browse files
committed
Add index.story.tsx for LinkControl
1 parent 0ad8409 commit 1c1a671

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)