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