Explore Library
Code QuizBeginner

Core Components vs HTML

Learn that React Native uses core components instead of web HTML tags.

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