Learn why layout containers must use View, not HTML div, in React Native.
import React from 'react'; import { Text } from 'react-native'; export default function Box() { return ( <div> <Text>Hello</Text> </div> ); }
What is the bug in this code?