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