설명 없음

Denuncias.js 464B

1234567891011121314151617181920
  1. import React from "react";
  2. import { View, Text, StyleSheet, TouchableOpacity} from "react-native";
  3. const Denuncias = () => {
  4. return (
  5. <View>
  6. <Text
  7. style={{
  8. fontSize: 30,
  9. textAlign: "center",
  10. marginTop: "20%"
  11. }}
  12. >Llenar formulario y
  13. listado de denuncias</Text>
  14. </View>
  15. )
  16. }
  17. export default Denuncias