I know that ActivatedRouteSnapshot.component
in Angular2 contains the reference/class to the activated route if I call Router.routerState.snapshot
but how to get for the component class the current (or minimal: one created) instance for it?
Injector.get(..)
does not return instances of components and creating a new instance of a component does also not help (me).