12 lines
361 B
TypeScript
12 lines
361 B
TypeScript
import { Component, AfterViewInit, ElementRef, Renderer, ViewChild, OnDestroy, OnInit, NgZone } from '@angular/core';
|
|
import { ScrollPanel } from 'primeng/primeng';
|
|
import { Router } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'of-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.scss']
|
|
})
|
|
export class AppComponent {
|
|
}
|