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