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