router-outlet is not a known element
The following code works: /*app.module.ts*/ import { NgModule } from '@angular/core'; import { HttpModule } from '@angular/http'; import { AppComponent } from './app.component'; import { LetterRecall } from './letterRecall/letterRecall.component'; @NgModule({ imports: [BrowserModule, HttpModule], declarations: [AppComponent, LetterRecall], bootstrap: [AppComponent], }) export class AppModule {} /*app.component.ts*/ import {Component} from '@angular/core'; @Component({ selector: 'my-app', templateUrl: 'app/app.component.html' }) export class AppComponent { } /*app.component.html*/ <h3>Title</h3