summaryrefslogtreecommitdiff
path: root/app/presentation/components/weight.js
blob: 65c62722041c09f87ec4bb4b0be8a09f797eaf8b (plain)
1
2
3
4
5
6
7
8
9
10
import React, { Component } from 'react';
import { Text } from 'react-native';

export default class Weight extends Component {
  render() {
    return (
      <Text>{this.props.weight.amount} {this.props.weight.unit}</Text>
    );
  }
}