import React from 'react'; import { Text, View } from 'react-native'; import PropTypes from 'prop-types'; import Markdown from '../../containers/markdown'; import { themes } from '../../constants/colors'; import styles from './styles'; const Item = ({ label, content, theme, testID }) => content ? ( {label} ) : null; Item.propTypes = { label: PropTypes.string, content: PropTypes.string, theme: PropTypes.string, testID: PropTypes.string }; export default Item;