2022-07-22 13:13:50 +03:00
|
|
|
import { Component, ElementRef } from '@angular/core';
|
|
|
|
|
import { LayoutService } from "./service/app.layout.service";
|
2024-12-30 12:00:11 +03:00
|
|
|
import {AppMenuComponent} from './app.menu.component';
|
2022-07-22 13:13:50 +03:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-sidebar',
|
2024-12-30 12:00:11 +03:00
|
|
|
standalone: true,
|
|
|
|
|
imports: [AppMenuComponent],
|
2022-07-22 13:13:50 +03:00
|
|
|
templateUrl: './app.sidebar.component.html'
|
|
|
|
|
})
|
|
|
|
|
export class AppSidebarComponent {
|
|
|
|
|
constructor(public layoutService: LayoutService, public el: ElementRef) { }
|
|
|
|
|
}
|
|
|
|
|
|