-
Notifications
You must be signed in to change notification settings - Fork 0
/
movies.js
102 lines (102 loc) · 1.54 KB
/
movies.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
export default [
{
title: 'The Shawshank Redemption',
year: 1994,
actors: [
'Tim Robbins',
'Morgan Freeman'
],
},
{
title: 'Forrest Gump',
year: 1994,
actors: [
'Tom Hanks',
],
},
{
title: 'The Dark Knight',
year: 2008,
actors: [
'Christian Bale',
'Heath Ledger',
],
},
{
title: 'Inception',
year: 2010,
actors: [
'Leonardo DiCaprio',
],
},
{
title: 'Pulp Fiction',
year: 1994,
actors: [
'John Travolta',
'Samuel L. Jackson',
'Uma Thurman',
],
},
{
title: 'Iron Man',
year: 2008,
actors: [
'Robert Downey Jr.',
'Jeff Bridges',
'Gwyneth Paltrow',
'Samuel L. Jackson',
],
},
{
title: 'Fight Club',
year: 1999,
actors: [
'Edward Norton',
'Brad Pitt',
],
},
{
title: 'The Big Lebowski',
year: 1998,
actors: [
'Jeff Bridges',
'John Goodman',
],
},
{
title: 'Django Unchained',
year: 2012,
actors: [
'Jamie Foxx',
'Christoph Waltz',
'Leonardo DiCaprio',
'Samuel L. Jackson',
],
},
{
title: 'Angels & Demons',
year: 2009,
actors: [
'Tom Hanks',
'Ewan McGregor',
],
},
{
title: 'The Wolf of Wall Street',
year: 2013,
actors: [
'Leonardo DiCaprio',
'Jonah Hill',
'Matthew McConaughey',
],
},
{
title: '21 Jump Street',
year: 2012,
actors: [
'Jonah Hill',
'Channing Tatum',
],
},
];