Datalayer Desktop - v0.0.2
    Preparing search index...

    Interface NotebooksSectionProps

    interface NotebooksSectionProps {
        loading: boolean;
        notebooks: DocumentItem[];
        onDeleteNotebook: (notebook: DocumentItem) => void;
        onDownloadNotebook: (notebook: DocumentItem) => void;
        onNotebookSelect: (notebook: DocumentItem) => void;
        selectedNotebook: null | string;
    }
    Index

    Properties

    loading: boolean
    notebooks: DocumentItem[]
    onDeleteNotebook: (notebook: DocumentItem) => void
    onDownloadNotebook: (notebook: DocumentItem) => void
    onNotebookSelect: (notebook: DocumentItem) => void
    selectedNotebook: null | string