I\'m trying to inject a parent component into a child component. I thought this would be straightforward – simply specify/inject the parent component in the child\'s
you could simply use @Host decorator like this:
import {Component, Host} from 'angular2/core'; .... constructor(@Host() private app: AppComponent)