Add label-score & hover-enlarge-image

This commit is contained in:
Liew Ying De 2023-02-14 09:30:24 +08:00
parent 2ad0a5d0dc
commit bdb1f48b5c
15 changed files with 294 additions and 11 deletions

View file

@ -0,0 +1,17 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'ngx-hover-enlarge-image',
templateUrl: './hover-enlarge-image.component.html',
styleUrls: ['./hover-enlarge-image.component.scss']
})
export class HoverEnlargeImageComponent implements OnInit {
showOverlay = false;
constructor() { }
ngOnInit() {
}
}