-1

I am trying to import the below listed modules, but i am getting an error for each of those modules with no exported members. I have manually checked the @angular/common folders and can't find these modules listed. Where can I get those?

 import {FORM_DIRECTIVES, FormBuilder,  ControlGroup, Validators, AbstractControl} from '@angular/common';
Suraj Rao
  • 29,388
  • 11
  • 94
  • 103
Arun-
  • 846
  • 3
  • 22
  • 41

1 Answers1

1

Form controls are available in @angular/forms.

import { FormBuilder,  FormGroup, Validators, AbstractControl} from '@angular/forms';

Check more here

Suraj Rao
  • 29,388
  • 11
  • 94
  • 103