# UI Component

#### Adding Buttons in your project

There following steps to add Buttons

* First of all, you have to edit in **app.module**file ,which is located in **your-project-name\src\app** folder.
* Import following files in **app.module** file

  ```
  import { ButtonsComponent }   from './components/buttons/buttons.component';
  ```
* &#x20;Now open **app-routing.module.ts** file and import this file.

  ```
  import { ButtonsComponent }   from './components/buttons/buttons.component';
  ```

  After this,add following in routes

  ```
  { path: 'components/buttons', component: ButtonsComponent }
  ```
