src/app/courses/course-detail/course-card/course-card.component.ts
selector | app-course-card |
styleUrls | course-card.component.scss |
templateUrl | course-card.component.html |
data
|
Type: |
subtitle
|
Type: |
title
|
Type: |
value
|
Type:
Default value: |
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-course-card',
templateUrl: './course-card.component.html',
styleUrls: ['./course-card.component.scss']
})
export class CourseCardComponent {
@Input() title: string = ""
@Input() subtitle: string = ""
@Input() value: number = 0
@Input() data: any
}