November 2019
Beginner
804 pages
20h 1m
English
Components are at the very core of Angular applications. An Angular application is materialized by a component tree that, as a whole, defines the user interface and behavior of your application.
At the top of this tree is the App component, which is the one that you will define first. In this component, you will be able to compose/assemble other components, which will, in turn, also be able to use other ones in different ways.
Here's what this tree could look like:

The App component at the top is the one that will be loaded first when the Angular application starts (we'll quickly explore the bootstrap process later in this chapter). ...
Read now
Unlock full access