Skip to content

Instantly share code, notes, and snippets.

@bobbyg603
Created May 9, 2022 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbyg603/6f116b383365190495765361948df91f to your computer and use it in GitHub Desktop.
Save bobbyg603/6f116b383365190495765361948df91f to your computer and use it in GitHub Desktop.
File Uploads with Angular and Express
import { Component, Input } from '@angular/core';
import { FileUploadProgress } from './file-upload-progress';
@Component({
selector: 'app-uploads',
templateUrl: './uploads.component.html',
styleUrls: ['./uploads.component.scss']
})
export class UploadsComponent {
@Input() uploads?: FileUploadProgress[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment