# Sortable js

#### Adding Sortable in your project

There following steps to add Sortable

* 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 { SortableDemoComponent}  from './drag-and-drop/sortablejs/sortable.component';
  ```
* &#x20;Now open **app-routing.module.ts** file and import this file.

  ```
  import { SortableDemoComponent }  from './drag-and-drop/sortablejs/sortable.component';
  ```

  After this,add following in routes

  ```
  { path: 'dragndrop/sortable', component: SortableDemoComponent }
  ```
