-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
34 lines (30 loc) · 791 Bytes
/
constants.ts
File metadata and controls
34 lines (30 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
export const Mathematics: string = "Mathematics";
export const Hebrew: string = "Hebrew";
export const Geography: string = "Geography";
export const History: string = "History"; //Zabela Roman: need to be added "export" for possibility to import to other projects
export const Chemistry: string = "Chemistry";
export const Physics: string = "Physics";
//zabela roman: create list of subject for random creation classes
export const Subject: string[] = [
"Mathematics",
"Hebrew",
"Geography",
"History",
"Chemistry",
"Physics"
];
export const firstNames: string[] = [
"Ivan",
"Peter",
"Olga",
"Fyodor",
"Oleg",
"Ksenia"
];
export const lastNames: string[] = [
"Petrov",
"Ivanov",
"Sidorov",
"Kukushkin",
"Fyodorov"
];