Explore Library
Code QuizBeginner

Pressable Basics

Learn the correct event prop for the Pressable component.

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

export default function Item() {
  return (
    <Pressable onPressed={() => console.log('pressed')}>
      <Text>Press me</Text>
    </Pressable>
  );
}

What is the bug in this code?