No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- <section class="notifications">
- <header>
- <h4> Notification </h4>
- </header>
-
- <ul>
- <li *ngFor="let notification of notifications">
- <h5> {{ notification.text }} </h5>
- <p *ngIf="notification.description"> {{ notification.description }} </p>
- <span class="time-stamp"> {{ notification.timeStamp }} </span>
- </li>
- </ul>
-
- </section>
|