@tsmean/animal
Version:
21 lines (14 loc) • 392 B
text/typescript
import {Component, Input, OnInit} from '@angular/core';
import {Animal} from '../animal';
({
selector: 'animal-dashboard-list',
templateUrl: './display-animal-list.component.html',
styleUrls: ['./display-animal-list.component.css']
})
export class DisplayAnimalListComponent implements OnInit {
()
animalIds: string[];
constructor() { }
ngOnInit() {
}
}