Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
301 Bytes
import { ChangeDetectionStrategy, Component } from '@angular/core'
import { RouterOutlet } from '@angular/router'
@Component({
selector: 'app-root',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [RouterOutlet],
templateUrl: './app.component.html',
})
export class AppComponent {}