Change GrowingTextarea initial value (#222)
This commit is contained in:
parent
b127432ba9
commit
a44e6455c0
|
@ -15,7 +15,7 @@ type Props = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GrowingTextarea = (props: Props) => {
|
export const GrowingTextarea = (props: Props) => {
|
||||||
const [value, setValue] = createSignal<string>()
|
const [value, setValue] = createSignal<string>('')
|
||||||
const [isFocused, setIsFocused] = createSignal(false)
|
const [isFocused, setIsFocused] = createSignal(false)
|
||||||
|
|
||||||
createEffect(() => {
|
createEffect(() => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user