Skip to content

Commit

Permalink
Add index.story.tsx for LinkControl
Browse files Browse the repository at this point in the history
  • Loading branch information
miminari committed Oct 26, 2024
1 parent 0ad8409 commit 1c1a671
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/**
* External dependencies
*/
import type { Meta, StoryObj } from '@storybook/react';

/**
* Internal dependencies
*/
import LinkControl from '../';

const meta: Meta< typeof LinkControl > = {
component: LinkControl,
title: 'BlockEditor/LinkControl',
// argTypes: {
// children: { control: { type: null } },
// },
parameters: {
controls: { expanded: true },
docs: { canvas: { sourceState: 'shown' } },
},
};

export default meta;

export const Default: StoryObj< typeof LinkControl > = {
// args: {
// children: <LinkControl />,
// },
};

0 comments on commit 1c1a671

Please sign in to comment.