Caros, repliquei o código do projeto tal qual as vídeo aulas. Mas após criar as rotas, o projeto não executou mais. O erro que consegui coletar foi: EXCEPTION: Error in http://localhost:3000/app/app/app.component.html:23:13 caused by: Maximum call stack size exceeded
Meu arquivo app.routes.ts
import {RouterModule, Routes} from '@angular/router';
import {ListagemComponent} from './listagem/listagem.component';
import {CadastroComponent} from './cadastro/cadastro.component';
const appRoutes: Routes = [
{path: '', component: ListagemComponent},
{path: 'cadastro', component: CadastroComponent},
{path: '**', redirectTo: ''}
];
export const routing = RouterModule.forRoot(appRoutes);
Meu arquivo app.module.ts
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {HttpModule} from '@angular/http';
import 'rxjs/add/operator/map';
import {AppComponent} from './app.component'
import {FotoModule} from './foto/foto.module'
import {PainelModule} from './painel/painel.module'
import {CadastroComponent} from './cadastro/cadastro.component';
import {ListagemComponent} from './listagem/listagem.component';
import {routing} from './app.routes';
@NgModule({
imports: [
BrowserModule,
FotoModule,
HttpModule,
PainelModule,
routing
],
declarations: [
AppComponent,
CadastroComponent,
ListagemComponent
],
bootstrap: [AppComponent]
})
export class AppModule {}