New to Kendo UI for Angular? Start a free 30-day trial
KENDO_SORTABLE
Use this utility array to access all @progress/kendo-angular-sortable
-related components and directives in a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_SORTABLE } from '@progress/kendo-angular-sortable';
@Component({
selector: 'my-app',
standalone: true,
imports: [KENDO_SORTABLE],
template: `
<kendo-sortable [kendoSortableBinding]="items">
</kendo-sortable>
`
})
export class AppComponent {
public items = ['Item 1', 'Item 2', 'Item 3'];
}