Skip to content
Snippets Groups Projects
BaseViewer.js 196 B
export class BaseViewer {
    constructor(sectionData) {
        this.sectionData = sectionData;
    }
    render() {
        throw new Error('render() must be implemented in subclasses');
    }
}