Files
angular/angular.io/src/app/app.component.ts
Rob Wormald 6e2c9cb586 feat(aio): add initial doc viewer
with lots of fixes from Igor and Ward <3
2017-02-02 23:28:00 -08:00

12 lines
314 B
TypeScript

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