xnTip.js
365 Bytes
import React, {Component} from 'react';
import {
ViewPropTypes,
StyleSheet,
View,
Text
} from 'react-native';
let styles = StyleSheet.create({
});
export default class xnTip extends Component{
constructor() {
super(...arguments);
this.state = {
};
}
render() {
return ( <View><Text>111111111111</Text></View>)
}
}