I have a list of differents components in controller and I need render them, How?
Dart:
@NgController(
selector: '[my-controller]',
publishAs: 'ctrl'
)
class MyController {
  List components;
  MyController() {
     components = new List();
     components.add(new ComponentType1());
     components.add(new ComponentType2());
  }
}
HTML:
<div my-controller>
  <div ng-repeat="component in ctrl.components">
     <!-- How render the component here? -->
  </div>
</div>
 
    