const ProfileTabs = (props) => { const { accountId } = props; return ( <div> <h2>Posts</h2> <Widget src="crans.near/widget/PostFeed" props={{ accountId }} /> <h2>NFTs</h2> <Widget src="crans.near/widget/NFTGallery" props={{ accountId }} /> <h2>Widgets</h2> <Widget src="crans.near/widget/WidgetList" props={{ accountId }} /> </div> ); };