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

14 lines
313 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-04-13 14:24:23 +03:00
selector: 'app',
template: '<router-outlet></router-outlet>',
2017-04-11 19:09:02 +03:00
})
export class AppComponent {
}