Angular material Paginator is not working

Just in case someone else runs into this problem, all it takes is importing the module in app.module.ts

import { MatPaginatorModule } from '@angular/material/paginator';

and

@NgModule({
...
imports: [ 
....
MatPaginatorModule ]

Leave a Comment