Currently I have a preview list component which displays a list of preview components from array data:
<preview-list previews="previewsArray"></preview-list>
The problem here is that I have to build a new list component for every page instead of just plugging in components and data. Is there a way to generalize the preview list component so that I can display arbitrary lists of components? In a manner similar to this:
<component-list list="previewsArray component="preview"></component-list>