Explore Library
Code QuizBeginner

TouchableOpacity Handler

Learn the correct press prop name for TouchableOpacity.

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

export default function Btn() {
  return (
    <TouchableOpacity onClick={() => console.log('tap')}>
      <Text>Tap</Text>
    </TouchableOpacity>
  );
}

What is the bug in this code?