I have validation Form using Angular 2 and want to add ng2-select to it
this is my code, Angular & HTML
submit.component.ts  
   . . .
  private city = new FormControl("", Validators.required);
   . . .
  ngOnInit() {
    this.getMelks();
    this.addPropertyForm = this.formBuilder.group({
      . . .
      city: this.city,
     . . .
    });
  }
submit.component.html
 <div class="form-group">
                <input class="form-control" type="text" name="city" [(ngModel)]="melk.city" placeholder="city" min="0" required>
 </div>
the code i want to add :
Angular :
  public city:Array<string> = ['NY','CA' ,'LA'];
HTML :
 <label>City</label>
      <ng-select [allowClear]="false"
                 [items]="city"
                 [disabled]="disabled"
                 (data)="refreshValue($event)"
                 (selected)="selected($event)"
                 (removed)="removed($event)"
                 (typed)="typed($event)"
                 placeholder="Choose the city">
      </ng-select>
Now how can i add ng2-select to my input and the the FormControl? 


