Add progress bar to top of page for nicer loading indicator styles

This commit is contained in:
Dane Everitt
2020-04-10 12:41:08 -07:00
parent 708c15eba8
commit d3a06e1ca8
12 changed files with 133 additions and 34 deletions

View File

@@ -9,3 +9,5 @@ export function bytesToHuman (bytes: number): string {
}
export const bytesToMegabytes = (bytes: number) => Math.floor(bytes / 1000 / 1000);
export const randomInt = (low: number, high: number) => Math.floor(Math.random() * (high - low) + low);