13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-layout-chat-right-drawer-album-box',
|
|
templateUrl: './album-box.component.html',
|
|
styleUrls: ['./album-box.component.scss']
|
|
})
|
|
export class AlbumBoxComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|