From 9b8a0f514521f473a308c72f4b27a5f9f2c8ada7 Mon Sep 17 00:00:00 2001 From: p-sw Date: Mon, 3 Jun 2024 21:20:08 +0900 Subject: [PATCH] chore: remove label story --- packages/react/stories/Label.stories.tsx | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 packages/react/stories/Label.stories.tsx diff --git a/packages/react/stories/Label.stories.tsx b/packages/react/stories/Label.stories.tsx deleted file mode 100644 index 41d3798..0000000 --- a/packages/react/stories/Label.stories.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { Input } from "../components/Input"; -import { Label } from "../components/Label"; - -export default { - title: "React/Label", -}; - -export const WithInput = () => { - return ( - - ); -}; - -export const HorizontalWithInput = () => { - return ( - - ); -};