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

12 lines
314 B
TypeScript
Raw Normal View History

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) {}
}