import React from 'react'; import { Text } from 'react-native'; import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../constants/colors'; const SectionTitle = React.memo(({ title, theme }) => ( {title} )); SectionTitle.propTypes = { title: PropTypes.string, theme: PropTypes.string }; export default SectionTitle;