ilink-world/app/screens/wallet/user/modal.js

33 lines
1.1 KiB
JavaScript
Raw Normal View History

import React from "react"
import { View, Text, Alert, StyleSheet } from "react-native"
export default function Modal() {
return(
<View>
<Text>modal</Text>
{/* {
Alert.alert(
I18n.t("CONNEXION_CHOICE"),
I18n.t("CONNEXION_CHOICE_DESCRIPTION"),
[
{
}, {
text: I18n.t('NO'), onPress: () => {
this.connectClicked(false)
}
},
],
)
} */}
</View>
)
}
const styles = StyleSheet.create({
})