import { RELATED_ITEMS } from '@/fragments/items' import AccordianItem from './accordian-item' import Items from './items' import { NavigateFooter } from './more-footer' const LIMIT = 5 export default function Related ({ title, itemId, ...props }) { const variables = { title, id: itemId, limit: LIMIT } return ( related posts} body={ data.related} Footer={props => } /> } {...props} /> ) }