Skip to content

Instantly share code, notes, and snippets.

@molcik
Created September 26, 2017 13:29
Show Gist options
  • Save molcik/67de4c0cd581849b905d0b43358fda6a to your computer and use it in GitHub Desktop.
Save molcik/67de4c0cd581849b905d0b43358fda6a to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<nav>
<h2>Menu:</h2>
<a routerLink="classic">Classic component</a>
<a routerLink="lazy">Lazy loaded component</a>
</nav>
<h2>Router outlet:</h2>
<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