Skip to content

Instantly share code, notes, and snippets.

@hidashun
Created July 30, 2020 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hidashun/6c93dd6b065f96a92a4523597fc3fc20 to your computer and use it in GitHub Desktop.
Save hidashun/6c93dd6b065f96a92a4523597fc3fc20 to your computer and use it in GitHub Desktop.
import {Component} from '@angular/core';
import {FormControl, FormGroup} from '@angular/forms';
@Component({
selector: 'app-date-range-picker-form',
templateUrl: './date-range-picker-form.component.html',
})
export class DateRangePickerFormComponent {
range = new FormGroup({
start: new FormControl(),
end: new FormControl(),
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment