import { Component, Input } from '@angular/core';
import { FormControl, ReactiveFormsModule } from '@angular/forms';
import { InputComponent } from '../input/input.component';
@Component({
selector: 'field-postal-code',
template: ``,
imports: [ReactiveFormsModule, InputComponent],
})
export class PostalCodeComponent {
@Input({ required: true }) control = new FormControl('');
@Input() name = 'postal_code';
}