From b3c8a840c7c2cf19ae329fa42b60097cb5f82327 Mon Sep 17 00:00:00 2001 From: jonniebigodes Date: Thu, 23 May 2024 16:48:07 +0100 Subject: [PATCH] Merge pull request #27146 from kongallis/remove-unused-imports Docs: remove unused imports (cherry picked from commit 122a83f8c37076b0916ad614447cc2b9f54722a5) --- docs/snippets/react/button-story-with-args.ts-4-9.mdx | 2 +- docs/snippets/react/button-story-with-args.ts.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/snippets/react/button-story-with-args.ts-4-9.mdx b/docs/snippets/react/button-story-with-args.ts-4-9.mdx index 32e4ac97662a..ddf531e2e8a8 100644 --- a/docs/snippets/react/button-story-with-args.ts-4-9.mdx +++ b/docs/snippets/react/button-story-with-args.ts-4-9.mdx @@ -3,7 +3,7 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { Button, ButtonProps } from './Button'; +import { Button } from './Button'; const meta = { component: Button, diff --git a/docs/snippets/react/button-story-with-args.ts.mdx b/docs/snippets/react/button-story-with-args.ts.mdx index 3464a9dc5c27..bc92ada612e2 100644 --- a/docs/snippets/react/button-story-with-args.ts.mdx +++ b/docs/snippets/react/button-story-with-args.ts.mdx @@ -3,7 +3,7 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { Button, ButtonProps } from './Button'; +import { Button } from './Button'; const meta: Meta = { component: Button,