mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
16 lines
286 B
TypeScript
16 lines
286 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-components',
|
||
|
|
templateUrl: './components.component.html',
|
||
|
|
styleUrls: ['./components.component.scss']
|
||
|
|
})
|
||
|
|
export class ComponentsComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|