import React, {Component} from 'react'; import {StyleSheet, View, Text, TouchableOpacity} from 'react-native'; const styles = StyleSheet.create({ }); export default class Help extends Component { constructor(props) { super(props); } render() { //const { counter } = this.props; return ( This is a sample counter app. Press Increase to add 1 to the value. Press Decrease to subtract 1 from the value. ); } }