Watch out for this messy bug if you’re new to react native. — Text should be rendered inside <Text> component: While the error may seem obvious, probably you tried using plain text without wrapping it in a <Text></Text> component like so: const myApp = () => { return <>hello there!</> // throws an error❌ }; But what if you did every thing right? Let’s go deeper and see how you…