This will work as expected:
<Keyboard
sentenceDelayPerCharRange={[0, 0]}
keyPressDelayRange={[50, 70]}
>
{({ type }) =>
type(
'test',
3000,
"Multiple instances of Keyboard can easily be rendered at the same time"
)
}
</Keyboard>
While this will not:
<Keyboard
sentenceDelayPerCharRange={[0, 0]}
keyPressDelayRange={[50, 70]}
>
{({ type }) =>
type(
'',
3000,
"Multiple instances of Keyboard can easily be rendered at the same time"
)
}
</Keyboard>