Skip to content

Instantly share code, notes, and snippets.

@fredrik-lundin
Created March 28, 2017 17:05
Show Gist options
  • Save fredrik-lundin/5c1a934ea43f1e470ac689350d489110 to your computer and use it in GitHub Desktop.
Save fredrik-lundin/5c1a934ea43f1e470ac689350d489110 to your computer and use it in GitHub Desktop.
App component
import { RouterLink } from '@angular/router/router';
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<h1> Angular CI Example! </h1>
<nav>
<a routerLink="/red">RED</a>
<a routerLink="/blue">BLUE</a>
</nav>
<router-outlet></router-outlet>
`
})
export class AppComponent {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment