1 directories, 28 files

tinai

Home / testing / ai / tinai
/**
 * Class NotebookIndex
 * Represents the view for a notebook, displaying a placeholder message.
 */
class NotebookIndex {
    
    #storage;
    #app_callbacks;
    
    constructor(storage, app_callbacks) {
        this.#storage = storage;
        this.#app_callbacks = app_callbacks;
    }

    /**
     * Renders the notebook index view.
     * @param {HTMLElement} div_main - The main container element.
     */
    render(div_main) {
        div_main.innerHTML = 'documents...';
    }
}

export default NotebookIndex;
🌐
notebook-index.js ×
Type: Web, text/plain
527 Bytes
Last Modified 2026-04-25 02:56:41
⬇ Download File