mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-23 17:56:09 +01:00
12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
import {Component} from '@angular/core';
|
|
import 'style!./popularApp.scss';
|
|
|
|
@Component({
|
|
selector: 'popular-app',
|
|
templateUrl: './popularApp.html'
|
|
})
|
|
export class PopularApp {
|
|
|
|
ngOnInit() {
|
|
}
|
|
}
|