I\'m trying to send data to a custom modal content component so I can call it from any other component and not repeat code. I\'m new to Angular 2 and have followed the \"Com
Just provide a service and inject it to VideoModalComponent and PageComponent then you can use this service to communicate.
VideoModalComponent
PageComponent
See https://angular.io/docs/ts/latest/cookbook/component-communication.html#!#bidirectional-service for more details and examples.