Bind ion-chip

Hi,

I am trying to bind ion-chip.

Here is my code:

<ion-list id="selectedGroups">
    <ion-chip *ngfor="let selectedGroup of selectedGroups; let indx=index">
      <ion-label>{{selectedGroup.label}}</ion-label>
      <button ion-button (click)="deleteGroup(selectedGroup.value)">
        <ion-icon name="close" color="primary"></ion-icon>
      </button>
    </ion-chip>
  </ion-list>

And error is:

Can’t bind to ‘ngforOf’ since it isn’t a known property of ‘ion-chip’

I have already added BrowserModule in app.Module. The problem is not with that because my home page has some bind elements that are working.

Is there any way to do that with ion-chip? This is very important to me. Can anyone help please?

Thanks in advance.