diff --git a/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx b/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx index dc2fc14f24..c7b062e9c3 100644 --- a/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx +++ b/packages/smarthr-ui/src/components/Textarea/Textarea.stories.tsx @@ -14,9 +14,9 @@ export default { } const Template: StoryFn = () => { - const [value, setValue] = useState('message👌') - const onChangeValue = (e: React.ChangeEvent) => - setValue(e.currentTarget.value) + const [value1, setValue1] = useState('message👌') + const [value2, setValue2] = useState('message👌') + const [value3, setValue3] = useState('message👌') return (
  • @@ -58,8 +58,8 @@ const Template: StoryFn = () => {