Portfolio/pages/GalleryIndex.js

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()
]