Logo

GitLab

Sign in

xntalk / xntalk-rnapp

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • xntalk-rnapp
  • collect
  • src
  • components
  • xnTip.js
  • collect
    5718c905
    彭祥雨 authored
    2018-02-07 16:34:17 +0800  
    Browse File »
xnTip.js 365 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
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>)
  }
}