Introduction to Components

Learn to render components in templates.

We'll cover the following...

Ember components allow us to convert markup text and styles into reusable code. Other than the resusability perspective, components also help us organize our code. Components can also be reused across different applications. Ember components are made up of two files: a Handlebars template file and a JavaScript component file. The Handlebars template is an hbs file that contains the UI of that component. ...