Files
psp_panel/src/app/app.component.ts
T

16 lines
352 B
TypeScript
Raw Normal View History

2022-10-25 14:28:22 +03:00
import { Component, OnInit } from '@angular/core';
2021-12-09 17:24:42 +03:00
import { PrimeNGConfig } from 'primeng/api';
2022-10-25 14:28:22 +03:00
2021-12-06 10:26:58 +03:00
@Component({
2021-12-09 17:24:42 +03:00
selector: 'app-root',
templateUrl: './app.component.html'
2021-12-06 10:26:58 +03:00
})
2022-10-25 14:28:22 +03:00
export class AppComponent implements OnInit {
2021-12-22 16:41:48 +03:00
2022-01-07 15:40:43 +03:00
constructor(private primengConfig: PrimeNGConfig) { }
2021-12-09 17:24:42 +03:00
ngOnInit() {
this.primengConfig.ripple = true;
}
2021-12-06 10:26:58 +03:00
}