Setting Views\Templates tagName classNames etc

When the Views existed we could change the view container properties such as tagName and classNames. Now that Views are deprecated all the templates are rendered with a div tag and a single class called “ember-view” How can I control this container html element attributes

You can define tagName and classNames in a component, too. Since Ember is moving towards routable-components, you should be able to get the same effect with them as you do today with controllers.