Profile.js
310 Bytes
import React from 'react';
import {View, Text, Button} from 'react-native';
import SignUpComponent from "../components/SignUpComponent";
const Profile = () => {
const {me} = (state => state.user);
return (
<View>
<SignUpComponent/>
</View>
)
};
export default Profile;