As we saw previously, our application has some pages for registration, login, and the visualization of the motorcycles list, builders list, and motorcycle voting scheme. At this point, we are going to create all of the necessary code to compose these features.
Creating boilerplate Angular components
Creating the home module and component
In the next lines, we will create the home module and component:
- Open your Terminal window in ./Client/src/app and type the following command:
ng generate module pages/home --routing
As we saw previously, the preceding command will generate three new files:
- src/app/pages/home/home-routing.module.ts
- src/app/pages/home/home.modules.spec.ts
- src/app/pages/home/home.module.ts
Now, we just need...