renamed files, fixing small bugs

This commit is contained in:
Nye Evans 2021-01-01 20:05:16 +00:00
parent cd2d674687
commit 2406084276
3 changed files with 2 additions and 2 deletions

11
pages/gallery-index.js Normal file
View file

@ -0,0 +1,11 @@
export class slide{
constructor(title, caption, image){
this.title = title;
this.caption = caption;
this.image = image;
}
};
export var slides = [slide(),
slide(),
slide()
]