|
1234567891011121314151617 |
- import { Component, OnInit, Input } from '@angular/core';
-
- @Component({
- selector: 'app-class-card-list',
- templateUrl: './class-card-list.component.html',
- styleUrls: ['./class-card-list.component.scss']
- })
- export class ClassCardListComponent implements OnInit {
- @Input() classes: any;
-
- constructor() { }
-
- ngOnInit(): void {
-
- }
-
- }
|