New to Kendo UI for Angular? Start a free 30-day trial
KENDO_UPLOAD
Use the KENDO_UPLOAD
utility array to add all Upload-related components and directives to a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_UPLOAD } from '@progress/kendo-angular-upload';
@Component({
selector: 'my-app',
standalone: true,
imports: [KENDO_UPLOAD],
template: `<kendo-upload></kendo-upload>`
})
export class AppComponent {}