Created
May 10, 2017 09:30
-
-
Save rcerrejon/715b774ad8161d88e3b4a6b7e5004135 to your computer and use it in GitHub Desktop.
Simple alertbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Alert } from 'react-native'; | |
Alert.alert( | |
'Route', | |
'clicked!', | |
[{ text: 'OK', onPress: () => console.log('OK Pressed') }], | |
{ cancelable: false } | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment