19 lines
431 B
TypeScript
19 lines
431 B
TypeScript
|
import { Component, OnInit, Input } from '@angular/core';
|
||
|
import { RightDrawer } from '@app/types';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-layout-messenger-right-drawer',
|
||
|
templateUrl: './right-drawer.component.html',
|
||
|
styleUrls: ['./right-drawer.component.scss']
|
||
|
})
|
||
|
export class RightDrawerComponent implements OnInit {
|
||
|
@Input()
|
||
|
selectedRightDrawer: RightDrawer;
|
||
|
|
||
|
RightDrawer = RightDrawer;
|
||
|
|
||
|
constructor() {}
|
||
|
|
||
|
ngOnInit() {}
|
||
|
}
|