import AccordianItem from './accordian-item' import Items from './items' import { NavigateFooter } from './more-footer' const LIMIT = 5 export default function PastBounties ({ item }) { const variables = { name: item.user.name, sort: 'user', type: 'bounties', limit: LIMIT } return ( {item.user.name}'s bounties} body={ } filter={i => i.id !== item.id} /> } /> ) }