Learn the correct method for showing an alert dialog.
import { Alert } from 'react-native'; export function warn() { Alert('Warning', 'Something happened'); }
What is the bug in this code?