import React, {Component} from 'react'; import {Image, ScrollView, StyleSheet, View, TouchableOpacity} from 'react-native'; import MyText from './mytext.js'; const styles = { main: { backgroundColor: '#ffffff', flex: 1, }, menutable: { borderBottomColor: 'lightgrey', borderBottomWidth: 1, padding: 15, fontSize: 16, }, }; export default class Menu extends Component { constructor(props) { super(props); } render() { const { main, help } = this.props; return ( Calculator Help Tips About ); } }