mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 16:30:13 +01:00
16 lines
289 B
TypeScript
16 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() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|