import React from 'react'; import { View } from 'react-native'; import { themes } from '../../constants/colors'; import styles from './styles'; interface IBlockQuote { children: JSX.Element; theme: string; } const BlockQuote = React.memo(({ children, theme }: IBlockQuote) => ( {children} )); export default BlockQuote;