Understand that all displayable strings must be wrapped in a Text component.
import React from 'react'; import { View } from 'react-native'; export default function Greeting() { return ( <View> Hello World </View> ); }
What is the bug in this code?