From 182e32653963372abc15d2713cbdfed4e9dbb0aa Mon Sep 17 00:00:00 2001 From: Sainath Poojary Date: Tue, 31 Dec 2024 18:07:01 +0530 Subject: [PATCH] Storybook: Simplify Default export in URLInputButton story --- .../components/url-input/stories/button.story.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/packages/block-editor/src/components/url-input/stories/button.story.js b/packages/block-editor/src/components/url-input/stories/button.story.js index 7f89dda87084a8..cffb38d96c25de 100644 --- a/packages/block-editor/src/components/url-input/stories/button.story.js +++ b/packages/block-editor/src/components/url-input/stories/button.story.js @@ -41,15 +41,4 @@ const meta = { export default meta; -export const Default = { - render: function Template( { onChange, ...args } ) { - return ( - { - onChange( ...changeArgs ); - } } - /> - ); - }, -}; +export const Default = {};