mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
recommendations cleanup
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<div class="container">
|
||||
<div class="header" (click)="nextStage()">
|
||||
<div class="header">
|
||||
<img class="icon" src="/assets/images/Empfehlungen_Icon_blue.svg" />
|
||||
<span>Empfehlungen</span>
|
||||
</div>
|
||||
<div class="books">
|
||||
<div class="book" *ngFor="let book of books">
|
||||
<div class="book" *ngFor="let book of books" (click)="openBook(book)">
|
||||
<img [src]="book.image" />
|
||||
<div class="info">
|
||||
<span class="author">{{ book.author }}</span>
|
||||
|
||||
@@ -24,7 +24,9 @@ export class RecommendationsComponent implements OnInit {
|
||||
];
|
||||
constructor() {}
|
||||
|
||||
nextStage() {}
|
||||
openBook(book) {
|
||||
// TODO: Implement navigation ?
|
||||
}
|
||||
|
||||
ngOnInit() {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user