1
resposta

NovaTransferenciaComponent Fail

Voltei o curso mas não estou conseguindo entender o erro. No app.module.ts o app "NovaTranferenciaComponent" mostra a seguinte mensagem:

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.(-996001) (alias) class NovaTransferenciaComponent import NovaTransferenciaComponent

O código está assim:

import { NovaTransferenciaComponent } from './nova-transferencia.component';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from './app.component';

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

O que fazer mestre shaolim???

1 resposta

Olá, Robson! Tudo certo?

O problema pode ser na importação. O seu nova-transferencia.component.ts não está dentro de uma pasta chamada nova-transferencia? Se sim, você precisa passar ela no caminho, assim:

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

Espero ter ajudado!