Explore Library
Code QuizBeginner

ScrollView for Content

Learn that ScrollView must be imported from react-native to scroll content.

Codejavascript
import React from 'react';
import { View, Text } from 'react-native';

export default function List() {
  return (
    <ScrollView>
      <Text>Item 1</Text>
      <Text>Item 2</Text>
    </ScrollView>
  );
}

What is the bug in this code?