Files
psp_panel/src/app/layout/app.sidebar.component.ts
T

12 lines
329 B
TypeScript
Raw Normal View History

2022-07-22 13:13:50 +03:00
import { Component, ElementRef } from '@angular/core';
import { LayoutService } from "./service/app.layout.service";
@Component({
selector: 'app-sidebar',
templateUrl: './app.sidebar.component.html'
})
export class AppSidebarComponent {
constructor(public layoutService: LayoutService, public el: ElementRef) { }
}