You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
189 B

  1. import React from "react";
  2. import {View, Text} from "react-native";
  3. export default function EditUserData(props) {
  4. return (
  5. <View>
  6. <Text>Editar perfil</Text>
  7. </View>
  8. )
  9. }