22 lines
424 B
TypeScript
22 lines
424 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'secondary-page-component',
|
|
templateUrl: './secondary-page.component.html',
|
|
styleUrls: ['./secondary-page.component.css'],
|
|
})
|
|
export class SecondaryPageComponent implements OnInit {
|
|
@Input()
|
|
public hideSideBarOnMobile: boolean;
|
|
@Input()
|
|
public fixedSideBar: boolean;
|
|
|
|
constructor(){
|
|
|
|
}
|
|
|
|
ngOnInit(){
|
|
|
|
}
|
|
}
|