I'm having an issue with PrimeNG where my paginated table is displaying without proper styling. I want it to look like the one in this stackblitz example. I believe I have installed all the necessary packages and configured the styles paths in the angular.json file. Here is a snippet of my package.json:
{
// Package dependencies
}
In my angular.json file, I have set up the configurations for my project. Here is a part of it:
{
// Angular project configurations
}
Within my app.module.ts file, I have imported various modules including TableModule from primeng/table. Here is an excerpt:
// Module imports
My component.html file contains the code for displaying the table with pagination. Here is how it looks:
// HTML template for table display
The corresponding component.ts file includes the logic for loading items into the table. Here's a snapshot of that:
// Component logic for loading items
If you have any insights on what might be causing the styling issue with my PrimeNG table, I would greatly appreciate your help. Thank you.