Learn that React Native uses core components instead of web HTML tags.
import React from 'react'; import { Text } from 'react-native'; export default function Row() { return ( <span> <Text>Hi</Text> </span> ); }
What is the bug in this code?