import React, {Component} from 'react'; import {StyleSheet, View, Text, TouchableOpacity} from 'react-native'; const styles = StyleSheet.create({ button: { width: 100, height: 30, padding: 10, backgroundColor: 'lightgray', alignItems: 'center', justifyContent: 'center', margin: 3 } }); export default class Counter extends Component { constructor(props) { super(props); } render() { const { counter, increment, decrement } = this.props; return ( {counter} up down ); } }