The root component
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:
- Inside the WebStorm IDE, open the
app.ts
file, and notice the export line:Â Â Â Â Â export class AppComponent {}
- As we saw before, the
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. - The plan is to make the
AppComponent
class as the root component for our project, that is why we have the Component function imported from the Angular2 core module:Â Â Â Â Â import {Component} from 'angular2/core'; Â Â Â Â export class Sherlock {}
- This code should be self...