***install angular CLI(Command Line Interface)
npm install @angular/cli -g
***Project
ng new [project Name]
# ? Would you like to add Angular routing? = Yes
# ? Which stylesheet format would you like to use? = CSS
***Go to the folder
cd [project Name]
***Generate Components Using Angular CLI
ng g component components/[component name] --module app
***impleneting material UI
ng add @angular/material
***Run the application
ng serve
Given below is a screen shot of the UI
