20 lines
332 B
TypeScript
20 lines
332 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { Zone } from '@overflow/model/discovery';
|
|
|
|
|
|
@Component({
|
|
selector: 'app-zone-detail',
|
|
templateUrl: './zone-detail.component.html',
|
|
styleUrls: ['./zone-detail.component.scss'],
|
|
})
|
|
export class ZoneDetailComponent {
|
|
|
|
@Input() zone: Zone;
|
|
|
|
constructor(
|
|
) {
|
|
|
|
}
|
|
|
|
}
|