1import { Text } from 'react-native'; 2 3export default function Root() { 4 return ( 5 <Text style={{ color: 'red', fontSize: 22 }}> 6 Hello World! 7 </Text> 8 ); 9}