I'm building a dashboard displaying data from a large JSON object containing information on various servers. In the dashboard i will have 12 squares containing the exact same information but from different sources (CPU usage, ram usage, errors list etc.).
So i'm wondering if it is possible to dynamically scaffold one component that accepts arguments, for example 3 numbers and a string for lets say ram, cpu, power and IP address (the actual thing is closer to 20 different datapoints), and then replicate it on init using an Angular 6 component, but passing different data to each of the 12 different instances of the same component. I'd assume that using Bootstrap i'd be able to format sizing and placement with a grid.
A simple example would be highly appreciated!