const thingId = props.thingId ?? "main"; const { Feed } = VM.require("devs.near/widget/Module.Feed"); Feed = Feed || (() => <></>); return ( <div className="d-flex flex-column gap-1" style={{ background: "#fefefe", padding: "23px", }} > <h3> <b>Every Feed</b> </h3> <Feed index={[ { action: "thing", key: thingId, options: { limit: 100, order: "desc", accountId: props.accounts, }, cacheOptions: { ignoreCache: true, }, }, ]} Item={(p) => ( <Widget loading={<div className="w-100" style={{ height: "200px" }} />} src="mob.near/widget/MainPage.N.Post" props={{ accountId: p.accountId, blockHeight: p.blockHeight }} /> )} /> </div> );