import React from 'react' import { View, Text, TouchableOpacity } from 'react-native' import styles, { iconStyles } from '../../styles' import FeatherIcon from 'react-native-vector-icons/Feather' import NavigationArrow from './navigation-arrow' import formatDate from '../helpers/format-date' export default function SymptomViewHeader(props) { return ( {props.title} {formatDate(props.date)} props.goToSymptomInfo()} style={styles.infoButton} > ) }