13 lines
286 B
TypeScript
Raw Normal View History

2019-10-07 13:49:12 +09:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'ucap-chat-message-box-sticker',
templateUrl: './sticker.component.html',
styleUrls: ['./sticker.component.scss']
})
export class StickerComponent implements OnInit {
constructor() {}
ngOnInit() {}
}