diff --git a/src/components/Layer/LayerItem/LayerItem.stories.tsx b/src/components/Layer/LayerItem/LayerItem.stories.tsx index da2e607..9b436b6 100644 --- a/src/components/Layer/LayerItem/LayerItem.stories.tsx +++ b/src/components/Layer/LayerItem/LayerItem.stories.tsx @@ -12,6 +12,13 @@ const meta = { layout: 'centered', }, tags: ['autodocs'], + decorators: [ + (Story: any) => ( + + + + ), + ], } satisfies Meta export default meta @@ -32,11 +39,6 @@ export const Radio: Story = { caption: 'Caption', variant: 'radio', }, - render: (args) => ( - - - - ), } export const Disabled: Story = { @@ -56,11 +58,6 @@ export const RadioDisabeld: Story = { variant: 'radio', disabled: true, }, - render: (args) => ( - - - - ), } export const NoInfoButton: Story = {