student.component.html 186 Bytes
<p>student works!</p>

<div *ngFor="let s of students" class="card">
  {{s.id}} {{s.name}}
  {{s.email}}
  <hr style="height:2px;border-width:0;color:gray;background-color:gray">
</div>