import { DemoCert } from "./certificate"; import { DemoTranscript } from "./transcript"; import { DemoMedia } from "./media"; const templates = [ { id: "certificate", label: "Certificate", template: DemoCert, }, { id: "transcript", label: "Transcript", template: DemoTranscript, }, { id: "media", label: "Media", template: DemoMedia, }, ]; export default templates;