Skip to content

Instantly share code, notes, and snippets.

@ShubhamAsthana
ShubhamAsthana / file-uploader.component.html
Created July 25, 2019 05:24 — forked from stuartaccent/file-uploader.component.html
Angular 7 file uploader with queue and progress using HttpClient, example https://stackblitz.com/edit/angular-7-file-upload-queue
<div class="row">
<div class="col-md-3">
<h3>Select files</h3>
<input type="file" #fileInput multiple (change)="addToQueue()" />
</div>
<div class="col-md-9">
<h3>Upload queue</h3>
<table class="table-headed table-striped">