I have a code <div class="flex-container" *ngIf="mail"> Some data </div>
And i have a error Can't bind to 'ngIf' since it isn't a known property of 'div'.
How i can fix it?
I have a code <div class="flex-container" *ngIf="mail"> Some data </div>
And i have a error Can't bind to 'ngIf' since it isn't a known property of 'div'.
How i can fix it?
Import
BrowserModule
in the root module andCommonModule
in other modules where you want to use common directives.and
BrowserModule
exportsCommonModule
, this way it's not necessary to importCommonModule
directly in the root module.