Currently, I am in the process of developing a component that takes an @Input() property named itemList, shown below:
@Input() ItemList: T[] = [];
Is there a method available to transfer the @Input property of type T from the parent component to the child component within Angular 5?
Any sample would greatly assist. Since we are utilizing AOT (Ahead-of-Time compilation), it may not be as simple.