'Text' cannot be used as a JSX component.
Im using the Text
elements as example but it happens for all react native elements.
Code example:
return (<><TechnicianDetailCard technicianData={technicianData} /><TouchableOpacity onPress={() => { saveContact(); }}><Text>Add To contacts</Text></TouchableOpacity><TouchableOpacity onPress={() => { copyPhoneNumber(); }}><Text>Copy Phone Number</Text></TouchableOpacity></> );
Is there any solution to this?