Change GrowingTextarea initial value (#222)

This commit is contained in:
Ilya Y 2023-09-16 14:39:41 +03:00 committed by GitHub
parent b127432ba9
commit a44e6455c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ type Props = {
}
export const GrowingTextarea = (props: Props) => {
const [value, setValue] = createSignal<string>()
const [value, setValue] = createSignal<string>('')
const [isFocused, setIsFocused] = createSignal(false)
createEffect(() => {