import React from 'react'; import { Text } from 'react-native'; import PropTypes from 'prop-types'; const CodeLine = ({ value }) => ( {value.type === 'PLAIN_TEXT' && value.value} ); CodeLine.propTypes = { value: PropTypes.object }; export default CodeLine;