# va-hours-of-operation

The following examples exercise the various inputs.
- `control` is the `FormControl` instance

```html
<va-hours-of-operation [control]="control1"></va-hours-of-operation>
```

```typescript
class FormsInputDocComponent {
    ...
    constructor(..., private fb: FormBuilder) {
        this.control1 = this.fb.control({});
    }
}
```
