Advertisement
bebo231312312321

Untitled

Mar 10th, 2024
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export class YourComponent {
  2.   rightPanelActive = false;
  3.  
  4.   activateRightPanel() {
  5.     this.rightPanelActive = true;
  6.   }
  7.  
  8.   deactivateRightPanel() {
  9.     this.rightPanelActive = false;
  10.   }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement