I try to import FromGroup, FormBuilder and FormControl to my CustomModule:
import { FormsModule, FormGroup }   from '@angular/forms';
@NgModule({
  imports: [
    FormsModule,
    FormGroup
  ]
})
But it throws an error:
EXCEPTION: Uncaught (in promise): Error: Unexpected value 'FormGroup' imported by the module 'CustomModule'
If i only import FormsModule it works fine though.
Any ideas?