Recebo mensagens de erro ao carregar aplicação, quando importo módulos ListagemModule e FormularioModule na classe AppModule. Mas se eu importar as classes ListagemComponent e FormularioComponent, em vez dos módulos, então a aplicação é carregada e executada com sucesso. Alguém saberia me explicar o motivo disso?
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { FotoModule } from './foto/foto.module';
import { HttpModule } from '@angular/http';
import { PainelModule } from './painel/painel.module'
import { FormularioModule } from './formulario/formulario.module'
import { ListagemModule } from './listagem/listagem.module'
import { routing } from './app.routes';
import 'rxjs/add/operator/map';
@NgModule({
imports: [
BrowserModule,
FotoModule,
HttpModule,
PainelModule,
routing,
FormularioModule,
ListagemModule
],
declarations: [ AppComponent],
bootstrap: [ AppComponent ]
})
export class AppModule {
}