Angular LMS app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

class-card-list.component.ts 339 B

1234567891011121314151617
  1. import { Component, OnInit, Input } from '@angular/core';
  2. @Component({
  3. selector: 'app-class-card-list',
  4. templateUrl: './class-card-list.component.html',
  5. styleUrls: ['./class-card-list.component.scss']
  6. })
  7. export class ClassCardListComponent implements OnInit {
  8. @Input() classes: any;
  9. constructor() { }
  10. ngOnInit(): void {
  11. }
  12. }