Explore Library
Code QuizBeginner

Alert Dialog

Learn the correct method for showing an alert dialog.

Codejavascript
import { Alert } from 'react-native';

export function warn() {
  Alert('Warning', 'Something happened');
}

What is the bug in this code?