I’m building an app using Twitter Bootstrap. I’ve started to wrap similar structures as ember components that primarily simply represent Bootstrap HTML structure and CSS classes. For example, I have one page that starts out like:
{{#pages.main-content fixedWidth=false}}
{{#pages.panel-with-sidebar expanded=displayFilters title="Industries"}}
{{#pages.sidebar-block}}
{{filters.industry-filters params=model paramsChanged=(action 'setParam')}}
{{/pages.sidebar-block}}
....
Any thoughts? Is this a long-term performance problem?