I'm creating a window like component in Angular. On the top right of the component it can have set of buttons that do different things (like opening a modal, deleting something etc). See the image below for reference:
Now, we're using this type of layout in a lot of places within the application but with different set of buttons for the top right section. Now, in react doing this is pretty straightforward, I can simply pass any number of instanciated components as props to this component and display them.
What is the ideal way to do something like this in Angular?
