User.js
332 Bytes
'use strict';
import React from 'react-native';
let {
Component,
View,
Text
} = React;
export default class User extends Component {
render() {
return (
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center',}}>
<Text>User</Text>
</View>
);
}
}