Menu.js 254 B

1234567891011121314
  1. import React, { Component } from 'react';
  2. import { View, Text } from 'react-native';
  3. class Menu extends Component {
  4. render() {
  5. return (
  6. <View style={{flex:1}}>
  7. <Text>qwpeqiwe</Text>
  8. </View>
  9. );
  10. };
  11. }
  12. export default Menu;