import{Component,OnInit}from'@angular/core';import{Student}from'../models/students';import{STUDENTS}from'../mock/mock-students';import{Lecturer}from'../models/lecturers';import{LECTURER}from'../mock/mock-lecturers';import{Score}from'../models/scores';import{SCORES}from'../mock/mock-scores';import{Course}from'../models/courses';import{COURSES}from'../mock/mock-courses';@Component({selector:'app-home',templateUrl:'./home.component.html',styleUrls:['./home.component.scss'],})exportclassHomeComponentimplementsOnInit{title='Course Web Application and Mobile Application';descriptiion='คำอธิบายรายวิชา';students:Student[]=STUDENTS;lecturers:Lecturer[]=LECTURER;scores:Score[]=SCORES;courses:Course[]=COURSES;constructor(){}ngOnInit():void{}}