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