import React from 'react'; import PropTypes from 'prop-types'; import {truncate} from 'lodash'; export const Notes: React.StatelessComponent = ({item}) => { const notes = item.notes; const displayNotes = truncate(notes, {length: 120}); return (
{notes && ( {displayNotes} )}
); }; Notes.propTypes = { item: PropTypes.object, };