Estou tentando fazer um componente que é uma paginação para integrar em todas as páginas de pesquisas sem ter que fazer tudo novamente.
Só que dá este erro:
'paginator-nav' is not a known element:
1. If 'paginator-nav' is an Angular component, then verify that it is part of this module.
2. If 'paginator-nav' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
No meu module principal está assim:
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
@NgModule({
declarations: [
AppComponent,
HomeComponent,
MenuComponent,
PaginacaoComponent,
OrdenacaoCampoDirective
],
imports: [
ComumModule,
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
HttpClientModule,
MatNativeDateModule,
PessoasUsuariosModule,
LoginModule
],
providers: [
HttpErrorHandler,
MessageService,
UsuarioService,
SharedService
],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ],
entryComponents: [MenuComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
O que pode ser ?