const { includeTags, excludeTags, layout } = props; const { href } = VM.require("devhub.efiz.near/widget/core.lib.url"); if (!href) { return <p>Loading modules...</p>; } // I want a different post item. // Ability to switch between grid and list view // And so I want a different feed... return ( <div class="row w-100"> <Widget src={"devhub.efiz.near/widget/devhub.entity.post.List"} // TODO: This needs to filter by more labels props={{ tag: "blog", // ["blog", ...tags] }} /> </div> );