We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 429a4c9 commit ae9aa06Copy full SHA for ae9aa06
lesson_10/libraries/src/loaders/amiyah_jones.ts
@@ -22,17 +22,15 @@ export class AmiyahJonesLoader implements Loader {
22
async loadMediaItems(): Promise<MediaItem[]> {
23
// TODO: Implement this method.
24
return [
25
- class Test {
+ class movie1 {
26
id = '1';
27
type = 'movie';
28
title = 'Inception';
29
genre = 'Sci-Fi';
30
year = 2010;
31
-
32
- load() {
33
- this.loadMediaItems();
34
- }
35
}
+
+ let itemText = this.loadMediaItems(movie1);
36
];
37
38
0 commit comments