1
resposta

Failed to compile. src/app/app.module.ts:10:5 - error NG6001:

Estou com este erro...

Failed to compile.

src/app/app.module.ts:10:5 - error NG6001: The class 'NovaTransferenciaComponent' is listed in the declarations of the NgModule 'AppModule', but is not a directive, a component, or a pipe. Either remove it from the NgModule's declarations, or add an appropriate Angular decorator.

10 NovaTransferenciaComponent

   ~~~~~~~~~~~~~~~~~~~~~~~~~~

src/app/nova-transferencia/nova-transferencia.component.ts:9:14 9 export class NovaTransferenciaComponent{ ~ 'NovaTransferenciaComponent' is declared here.

1 resposta

Olá Vitor, tudo bem?

Você verificou se o decorator @Component foi importado no seu arquivo nova-transferencia.component.ts?

Deve ficar assim:

import { Component } from '@angular/core';

@Component({
  selector: 'app-nova-transferencia',
  templateUrl: './nova-transferencia.component.html',
  styleUrls: ['./nova-transferencia.component.scss']
})
export class NovaTransferenciaComponent {

}

No arquivo app.module.ts, o componente NovaTransferenciaComponent deve estar no array de declarations e também deve ser importado, como descrito abaixo:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { NovaTransferenciaComponent } from './nova-transferencia/nova-transferencia.component';

@NgModule({
  declarations: [
    AppComponent,
    NovaTransferenciaComponent
  ],
  imports: [
    BrowserModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Espero ter ajudado! Até mais!