ngx-admin/src/app/app.component.ts

14 lines
317 B
TypeScript
Raw Normal View History

2017-04-11 19:09:02 +03:00
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { Component } from '@angular/core';
@Component({
2017-05-06 15:35:15 +03:00
selector: 'ngx-app',
2017-04-13 14:24:23 +03:00
template: '<router-outlet></router-outlet>',
2017-04-11 19:09:02 +03:00
})
export class AppComponent {
}