Created
March 28, 2017 17:05
-
-
Save fredrik-lundin/5c1a934ea43f1e470ac689350d489110 to your computer and use it in GitHub Desktop.
App component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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