Incorporating the child component into the parent component is an important step in the structure of my project. The dashboard component serves as the child element, while the preview component acts as the parent.
Within the parent (preview) component.html file, you will find:
<app-dashboard [selectedItems]="menus" [filteredItems]="newuniq"></app-dashboard>
By utilizing the @Input decorator, I am able to pass data from the parent component to the child component. However, I am facing the challenge of adding custom CSS to the layout of the child component. Any guidance on this would be greatly appreciated.