February 2017
Beginner to intermediate
294 pages
6h 9m
English
In this book, we will have a couple of components and services that will work together to achieve a goal. But we need a root component to act as a communication center between all these players. This root component will control the application flow. Let's start by creating this component:
app.ts file, and notice the export line: export class AppComponent {}
export keyword simply indicates that we are willing to share this class with every other player in the project. In other words, if anyone needs this class, they just need to import it in their own body.AppComponent class as the root component for our project, that is why we have the Component ...Read now
Unlock full access