Portfolio/pages/gallery-index.js

11 lines
214 B
JavaScript
Raw Normal View History

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