import { Component, OnInit } from '@angular/core' @Component({ selector: 'app-messages-compose', template: `

Compose new message

`, styles: [], }) export class MessagesComposeComponent implements OnInit { constructor() {} ngOnInit() {} }