-
Notifications
You must be signed in to change notification settings - Fork 0
/
lessons.ts
65 lines (65 loc) · 1.59 KB
/
lessons.ts
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
65
export const lessonsData = [
{
id: 1,
url: 'angular2-hello-world-write-first-application',
description:'Build Your First App - Hello World Step By Step',
duration: '2:49',
tags:"BEGINNER"
},
{
id: 2,
url: 'angular2-build-your-first-component',
description:'Building Your First Component',
duration: '2:07',
tags:"BEGINNER"
},
{
id: 3,
url: 'angular2-passing-data-to-component-using-input',
description:'Component @Input - How To Pass Input Data To a Component',
duration: '2:33',
tags:"BEGINNER"
},
{
id: 4,
url: 'angular2-component-events',
description:'Component Events - Using @Output to create custom events',
duration: '4:44',
tags:"BEGINNER"
},
{
id: 5,
url: 'angular2-component-templates-internal-vs-external',
description:'Component Templates - Inline Vs External',
duration: '2:55',
tags:"BEGINNER"
},
{
id: 6,
url: 'angular2-components-styling-component-isolation',
description:'Styling Components - Learn About Component Style Isolation',
duration: '3:27',
tags:"BEGINNER"
},
{
id: 7,
url: 'angular2-components-component-interaction',
description:'Component Interaction - Extended Components Example',
duration: '5:27',
tags:"BEGINNER"
},
{
id: 8,
url: 'angular2-components-exercise',
description:'Components Exercise !',
duration: '1:26',
tags:"BEGINNER"
},
{
id: 9,
url: 'angular2-components-exercise-solution',
description:'Components Exercise Solution Inside',
duration: '2:08',
tags:"BEGINNER"
}
];