import React from 'react' import { Text } from 'react-native' import styles from "../styles" export default function AppText(props) { return ( {props.children} ) } export function ActionHint(props) { if(props.isVisible) { return ( {props.children} ) } else { return null } } export function SymptomSectionHeader(props) { return ( {props.children} ) }