From 859a6c23fccec02e5db1f586bddc05c7ae9f8bcc Mon Sep 17 00:00:00 2001 From: p-sw Date: Mon, 3 Jun 2024 22:09:37 +0900 Subject: [PATCH] chore: remove all stories --- packages/react/stories/Input.stories.tsx | 115 ----------------------- 1 file changed, 115 deletions(-) delete mode 100644 packages/react/stories/Input.stories.tsx diff --git a/packages/react/stories/Input.stories.tsx b/packages/react/stories/Input.stories.tsx deleted file mode 100644 index 167d108..0000000 --- a/packages/react/stories/Input.stories.tsx +++ /dev/null @@ -1,115 +0,0 @@ -import React from "react"; -import { Input, InputFrame } from "../components/Input"; -import { Button } from "../components/Button"; - -export default { - title: "React/Input", -}; - -export const TextInput = () => { - return ; -}; - -export const PasswordInput = () => { - return ; -}; - -export const InvalidInput = () => { - return ; -}; - -export const DisabledInput = () => { - return ; -}; - -export const InputWithFrame = () => { - const [passwordState, setPasswordState] = React.useState({ visible: false }); - - return ( - - - - - ); -}; - -export const InputWithFrameInvalid = () => { - const [passwordState, setPasswordState] = React.useState({ visible: false }); - - return ( - - - - - ); -};