const index = { action: "post", key: "main", options: { limit: 10, order: "desc", accountId: props.accounts, }, }; const renderItem = (a) => a.value.type === "md" && ( <div key={JSON.stringify(a)} className="mb-3"> <Widget src="mob.near/widget/MainPage.N.Post" props={{ accountId: a.accountId, blockHeight: a.blockHeight }} /> </div> ); return ( <div> <Widget src="mob.near/widget/FilteredIndexFeed" props={{ index, renderItem }} /> </div> );