vn-verdnaturachat/app/views/ProfileView/index.js

19 lines
368 B
JavaScript
Raw Normal View History

2018-06-05 01:17:02 +00:00
import React from 'react';
import { Text, View } from 'react-native';
import LoggedView from '../View';
export default class ProfileView extends LoggedView {
constructor(props) {
super('ProfileView', props);
}
render() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>ProfileView</Text>
</View>
);
}
}