Home > Net >  NG0303: Can't bind to 'ngIf' since it isn't a known property of 'div'
NG0303: Can't bind to 'ngIf' since it isn't a known property of 'div'

Time:08-27

NG0303: Can't bind to 'ngIf' since it isn't a known property of 'div' (used in the 'HomeComponent' component template). If the 'ngIf' is an Angular control flow directive, please make sure that either the 'NgIf' directive or the 'CommonModule' is a part of an @NgModule where this component is declared.

MFE- Exposed - HomeModule

imports: [
    CommonModule,
    HomeRoutingModule,
    AngularMaterialModule,
    ReactiveFormsModule,
    FormsModule,
    SharedComponentsModule,
    LanguageTranslateModule,
    NumericOnlyModule,
    NgSelectModule,
    ToolTipmatModule

  ],

While Trying in shell Application giving this error

MFE is an Angular 13

Shell is an Angular 14

CodePudding user response:

it should be *ngIf or [ngIf] not plain ngIf

CodePudding user response:

It was CommonModule

issue importing commonmodule and removing BrowserModule worked!!

  • Related