-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.js
64 lines (61 loc) · 1.32 KB
/
data.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
var subjectsData = [{
name: 'Partial Differential Equation And Complex Analysis',
code: 'MAT201',
sem: 3,
department: 'ece'
}, {
name: 'Solid State Devices',
code: 'ECT201',
sem: 3,
department: 'ece'
}, {
name: 'Logic Circuit Design',
code: 'ECT203',
sem: 3,
department: 'ece'
}, {
name: 'Network Theory',
code: 'ECT205',
sem: 3,
department: 'ece'
}, {
name: 'Design And Engineering',
code: 'EST200',
sem: 3,
department: 'ece'
}, {
name: 'Professional Ethics',
code: 'HUT200',
sem: 3,
department: 'ece'
}, {
name: 'Sustainable Engineering',
code: 'MCN201',
sem: 3,
department: 'ece'
}, {
name: 'Scientific Computing Lab',
code: 'ECL201',
sem: 3,
department: 'ece'
}, {
name: 'Logic Design Lab',
code: 'ECL203',
sem: 3,
department: 'ece'
}]
var studyMaterials = [{
subjectCode: 'ECT201',
modules: ['1'],
type: 'CN',
name: 'SSD Text book',
content: 'BQACAgUAAxkBAAIB82Hw2mp5of93fgABvUIhdlXLiFuhfgACRQEAAnWb8VfvfbdL604AAYIjBA'
}, {
subjectCode: 'ECT201',
modules: ['1'],
type: 'V',
name: 'Youtue Videos',
content: 'e-lab: https://elabins.com\nGoogle: https://google.com'
}]
module.exports.subjectsData = subjectsData
module.exports.studyMaterials = studyMaterials