After installing NG-ZORRO for my project, I decided to start by incorporating their list component. However, I encountered errors with elements such as: 'nz-list-item-meta-title' and 'nz-list-item-action' not being recognized.
I have ensured that I imported all the necessary modules for using the list component, but the error persists.
It seems that the nz-list-item-meta-title
does not actually exist... Here is a snippet of my app.module.ts file:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
// Other imports skipped for brevity
@NgModule({
declarations: [
AppComponent,
// Other components listed here
],
imports: [
BrowserModule,
AppRoutingModule,
NgZorroAntdModule,
FormsModule,
HttpClientModule,
NzListModule,
BrowserAnimationsModule
],
providers: [{ provide: NZ_I18N, useValue: fr_FR }],
bootstrap: [AppComponent]
})
export class AppModule { }