2019-09-18 06:02:21 +00:00
|
|
|
import { Component } from '@angular/core';
|
2019-11-25 07:48:06 +00:00
|
|
|
import { SplashScreenService } from '@ucap-webmessenger/ui';
|
2019-09-18 06:02:21 +00:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrls: ['./app.component.scss']
|
|
|
|
})
|
|
|
|
export class AppComponent {
|
2019-11-25 07:48:06 +00:00
|
|
|
constructor(private splashScreenService: SplashScreenService) {}
|
2019-09-18 06:02:21 +00:00
|
|
|
}
|