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