import React, { useContext } from 'react' import { TouchableHighlight, View } from 'react-native' import { ThemeContext } from 'styled-components/native' import StyledCard from './StyledCard' import StyledText from './StyledText' interface Props { onPress(): void cta: string description: string testID?: string } export default ({ onPress, cta, description, testID }: Props) => { const theme = useContext(ThemeContext) return ( {description}{' '} {cta} ) }