app/src/commons/component/service-detail.component.ts
2018-09-09 19:20:21 +09:00

20 lines
353 B
TypeScript

import { Component, Input } from '@angular/core';
import { Service } from '@overflow/model/discovery';
@Component({
selector: 'app-service-detail',
templateUrl: './service-detail.component.html',
styleUrls: ['./service-detail.component.scss'],
})
export class ServiceDetailComponent {
@Input() service: Service;
constructor(
) {
}
}