15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
import { Component } from '@angular/core';
|
|
import { PrimeNGConfig } from 'primeng/api';
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html'
|
|
})
|
|
export class AppComponent {
|
|
|
|
constructor(private primengConfig: PrimeNGConfig) { }
|
|
|
|
ngOnInit() {
|
|
this.primengConfig.ripple = true;
|
|
}
|
|
}
|