I can find lots of examples on how to create a component in Ember programmatically and add it to the DOM like this:
var comp = App.FooBarComponent.create();
comp.appendTo('#someArea');
But what would you do if you wanted to do it by a name provided?
var componentName = 'FooBar';
var comp = ???
comp.appendTo('#someArea');
You could use
component
helper with dynamiccomponent-name
in template.See component helper guide here: http://emberjs.com/api/classes/Ember.Handlebars.helpers.html#method_component
UPDATE: You could use model to provide rendering logic: