Remove wrapper ember view divs

Is an better practice remove all wrapper ember views generateds in my components? What is impact?

Like this:

export default Ember.Component.extend({ tagName: ‘’ });

I’m asking for that because I’m using Lost Grid for system grids in my project and ember view divs generateds broken my grids

No, this is very bad practice. Do not set all components to have no tagName.

You must fix your lost grid issue a different way. Maybe with css or some other approach

1 Like

Thank’s @alexspeller

I followed your tip :grinning: