12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
import { Required } from '../../utils';
|
|
|
|
@Component({
|
|
selector: 'iqser-side-nav',
|
|
templateUrl: './side-nav.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class SideNavComponent {
|
|
@Input() @Required() title!: string;
|
|
}
|