11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrls: ['./app.component.scss']
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
title = 'ucap-webmessenger-app';
|
||
|
}
|