I noticed that the input element has a default height of 0 which causes some weird issues when you arent aware of it
Code Snippet
<input
placeholder="Type here..."
focused
onInput={setValue}
/>
<text>hey</text>
<text>You entered: {value}</text>
Is this intentional?