I want to create a reusable component of the Angular Material Mat-table.
I guess I've done pretty much about it (You can see in stackblitz) - I'm able to load the data from the parent component to the child component but I want to apply pipes on it before displaying it on the mat-table because I read it somewhere(Image below) that I've to apply pipes before passing the data to the reusable component(table-wrapper-component). That means the pipes thing should've been done in the parent component's ts file before passing that data(arrayOfObjects) to the child component. I'm not getting any clue to do that, help me with that.
Second thing, I want to use action buttons (properly reusable) in Mat-table. I've done that thing but I don't think what I've done is reusable. Please look into that and help me with that too, to make that reusable.
I know I didn't state the problem properly but I really need help with this. Please look into the stackblitz of this problem.
Thanks in Advance