enieber
10/1/2018 - 3:30 PM

Product.js

/**
 *
 * @format
 */
import React, { PureComponent } from 'react';
import { View, Text, Button } from 'react-native';


class Product extends PureComponent {
  render() {
    return (
      <View>
        <Text>{this.props.title}</Text>
        <Text>{this.props.description}</Text>
        <Text>{this.props.value}</Text>
        <Button
          onPress={this.props.buyProduct}
          title="Comprar"
          accessibilityLabel="Button to buy product"
        />
      </View>
    );
  }
}

export default Product;