import type NotificationListGroupItem from "./NotificationListGroupItem.js"; import Icon from "@ui5/webcomponents/dist/Icon.js"; import NotificationListGroupList from "./NotificationListGroupList.js"; export default function NotificationListItemTemplate(this: NotificationListGroupItem) { return (
  • {this.loading && ( {this.loadingText} )}
    {this.titleText}
  • ); }