grid mostly there

This commit is contained in:
2018-12-27 15:17:23 -08:00
parent 907d15d481
commit 9c052aebd2
14 changed files with 1418 additions and 24 deletions

11
src/model.ts Normal file
View File

@@ -0,0 +1,11 @@
export const SIZES = [1600, 1200, 800, 600, 400, 200];
export const URL = "img/data.json";
export interface Images {
[name: string]: Image
}
export interface Image {
height: number;
width: number;
}