ngOnInit()

in Hands-on lab/lab-files/developer/content-web/src/app/sessions/sessions.component.ts [14:18]


  ngOnInit() {
    this.sessionsService.getSessions().subscribe((res: Session[]) => {
      this.sessions = res;
    });
  }