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