Explore Library
Code QuizBeginner

View as a Container

Learn why layout containers must use View, not HTML div, in React Native.

Codejavascript
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?