import { Student } from '../models/student';
export const STUDENTS: Student[] = [
{id: 60111111, name: 'Tom Hank', email: 'tom@gmail.com'},
{id: 60111112, name: 'Jack Daniel', email: 'jack@gmail.com'},
{id: 60111113, name: 'Tommy Lee Jones', email: 'tjones@gmail.com'},
{id: 60111114, name: 'Jack Dawson', email: 'jdawson@gmail.com'},
];
-
Weerachai authored534300ac