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???