feat(aio): add initial doc viewer

with lots of fixes from Igor and Ward <3
This commit is contained in:
Rob Wormald
2017-02-02 12:10:47 -08:00
committed by Igor Minar
parent 559cf9d192
commit 6e2c9cb586
20 changed files with 169 additions and 20 deletions

View File

@ -1,10 +1,11 @@
import { Component } from '@angular/core';
import { NavEngine } from './nav-engine/nav-engine';
@Component({
selector: 'app-shell',
selector: 'aio-shell',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'app works!';
constructor(public navEngine: NavEngine) {}
}