import { compose } from 'react-apollo'; import { singleItemEnhancer } from '../enhancers/enhancers'; const SingleItem = ({ findItem: { error, loading, items } }) => { if (loading) return
Loading...
; if (error) returnError...
; const item = items[0]; if (!item) { returnNo Item Found
; } return ({item.description}