14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import { Component } from '@angular/core';
|
|
@Component({
|
|
selector: 'app-main-layout',
|
|
templateUrl: './main-layout.component.html',
|
|
styleUrl: './main-layout.component.css'
|
|
})
|
|
export class MainLayoutComponent {
|
|
isSidebarVisible: boolean = false;
|
|
|
|
toggleSidebar() {
|
|
this.isSidebarVisible = !this.isSidebarVisible;
|
|
}
|
|
}
|