| 1234567891011121314 |
- import { Component, Input } from '@angular/core';
- @Component({
- selector: 'app-service-check-string',
- templateUrl: './service-check-string.component.html',
- styleUrls: ['./service-check-string.component.scss']
- })
- export class ServiceCheckStringComponent {
- @Input() model?: string;
- public collect() {
- return this.model ?? '';
- }
- }
|