mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 00:40:12 +01:00
15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-ui-features',
|
|
templateUrl: './ui-features.component.html',
|
|
styleUrls: ['./ui-features.component.scss']
|
|
})
|
|
export class UiFeaturesComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|