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]