Skip to content

Instantly share code, notes, and snippets.

View Carsak's full-sized avatar
🎯
Focusing

Alma Z Carsak

🎯
Focusing
View GitHub Profile
@Carsak
Carsak / my-form.ts
Last active July 16, 2020 16:46
Создание формы Ангуляр
Import { FormGroup, FormBuilder } from '@angular/forms';
export class MyFormPage {
myForm: FormGroup;
constructor(
private fb: FormBuilder,
) {
}