14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { CommonApiService } from '@ucap/ng-api-common';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrls: ['./app.component.scss']
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
title = 'ucap-lg-web';
|
||
|
|
||
|
constructor(private commonApiService: CommonApiService) {}
|
||
|
}
|