33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
|
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({
|
||
|
|
||
|
})
|