Selection
Add in Selection Table in your project
There following steps to add Selection Table
First of all, you have to edit in app.modulefile ,which is located in your-project-name\src\app folder.
Import following files in app.module file
import { SelectionTableComponent} from './tables/table-selection/table-selection.component';
Now open app-routing.module.ts file and import this file.
import { SortingTableComponent } from './tables/table-sorting/table-sorting.component';
After this,add following in routes
{ path: 'tables/selection', component: SelectionTableComponent }
Last updated
Was this helpful?