Portfolio/pages/GalleryIndex.js
Nye Evans 5ba02103e1 readding files
github glitched out and thought some files existed when they didnt, solving it by deleting things :)
2021-01-01 18:06:19 +00:00

11 lines
No EOL
214 B
JavaScript

export class slide{
constructor(title, caption, image){
this.title = title;
this.caption = caption;
this.image = image;
}
};
export var slides = [slide(),
slide(),
slide()
]