Pages updated v3.21.0

This commit is contained in:
Bahadır Sofuoğlu 2022-12-08 15:26:57 +03:00
parent defd6ff6e2
commit edc9695de0
246 changed files with 33769 additions and 28188 deletions

View file

@ -0,0 +1,5 @@
export default class PricingService {
fetchPricing() {
return fetch('https://www.primefaces.org/cdn/pricing/uikit.json', { cache: 'no-store' }).then((res) => res.json());
}
}