12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
|
|
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) { }
|
||
|
|
}
|
||
|
|
|