17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css']
|
|
})
|
|
export class AppComponent {
|
|
title = 'calacloud';
|
|
//Sidebar toggle show hide function
|
|
status = false;
|
|
addToggle()
|
|
{
|
|
this.status = !this.status;
|
|
}
|
|
}
|