add mock folder and models folder

parent e591cd7a
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'},
];
export interface Student {
id: number;
name: string;
email: string;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment