2017-01-27 00:20:51 -08:00
|
|
|
import { Component } from '@angular/core';
|
2017-02-02 12:10:47 -08:00
|
|
|
import { NavEngine } from './nav-engine/nav-engine';
|
2017-01-27 00:20:51 -08:00
|
|
|
@Component({
|
2017-02-02 12:10:47 -08:00
|
|
|
selector: 'aio-shell',
|
2017-01-27 00:20:51 -08:00
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrls: ['./app.component.scss']
|
|
|
|
})
|
|
|
|
export class AppComponent {
|
|
|
|
title = 'app works!';
|
2017-02-02 12:10:47 -08:00
|
|
|
constructor(public navEngine: NavEngine) {}
|
2017-01-27 00:20:51 -08:00
|
|
|
}
|