Job

The Job is the central entity of the application

  • Job model
  • Job service
  • JobList component
  • JobDetail component

Material

Install Use npm to install material, cdk and animations. @angular/material contains the material components. @angular/cdk has predefined behaviour for components, like overlay for menus and popups, table behaviour and others. @angular/animations contains animation (what else?) and it will use Web Animations API if supported by the browser or fallback to css. npm install @angular/material @angular/cdk @angular/animations --save Configure Create a new file src/app/material.module.ts where we will centralize all material related imports [Read More]