detail view

This commit is contained in:
2019-11-24 17:08:02 +01:00
committed by smuddy
parent 0bfee780e8
commit 410b26f9ba
12 changed files with 81 additions and 10 deletions

View File

@@ -12,5 +12,6 @@ export class SongService {
}
public list = (): Observable<Song[]> => this.songDataService.list();
public read = (songId: string): Observable<Song | undefined> => this.songDataService.read(songId);
}