import React from "react" import PropTypes from "prop-types" import { TextInput, Text, View, Platform } from "react-native" export class FormStaticInput extends React.Component { static propTypes = { label: PropTypes.string, value: PropTypes.string, } render() { const { label, value } = this.props return ( {label}   ) } }