Skip to content

Commit ae9aa06

Browse files
author
AmiyahJo
committed
feat: testing out implementations
1 parent 429a4c9 commit ae9aa06

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

lesson_10/libraries/src/loaders/amiyah_jones.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,15 @@ export class AmiyahJonesLoader implements Loader {
2222
async loadMediaItems(): Promise<MediaItem[]> {
2323
// TODO: Implement this method.
2424
return [
25-
class Test {
25+
class movie1 {
2626
id = '1';
2727
type = 'movie';
2828
title = 'Inception';
2929
genre = 'Sci-Fi';
3030
year = 2010;
31-
32-
load() {
33-
this.loadMediaItems();
34-
}
3531
}
32+
33+
let itemText = this.loadMediaItems(movie1);
3634
];
3735
}
3836

0 commit comments

Comments
 (0)