mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
22 lines
422 B
TypeScript
22 lines
422 B
TypeScript
import {Component, HostBinding, Input, OnInit} from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'fuse-nav-subheader',
|
|
templateUrl: './nav-subheader.component.html',
|
|
styleUrls : ['./nav-subheader.component.scss']
|
|
})
|
|
export class NavSubheaderComponent implements OnInit
|
|
{
|
|
@HostBinding('class') classes = 'nav-subheader';
|
|
@Input() item: any;
|
|
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
}
|
|
|
|
}
|