angular-cn/aio/src/app/app.component.ts

13 lines
301 B
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
2017-02-02 23:02:23 -08:00
import { NavEngine } from './nav-engine/nav-engine.service';
@Component({
selector: 'aio-shell',
templateUrl: './app.component.html',
2017-02-02 23:02:23 -08:00
styleUrls: ['./app.component.scss']
})
export class AppComponent {
constructor(public navEngine: NavEngine) {}
}