Explore Library
Code QuizBeginner

Displaying Text

Understand that all displayable strings must be wrapped in a Text component.

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