Variable deleteRowAtomConst

deleteRowAtom: WritableAtom<null, {
    options?: ArrayTableRowData;
    path: string | string[];
}, Promise<void>> & WithInitialValue<null> = ...

Set function deletes a row or an array of rows from rowsDb or rowsLocal.

Param

A single path or array of paths of rows to delete

Example

Basic usage:

const deleteRow = useSetAtom(deleteRowAtom, tableScope);
deleteRow( path );

Generated using TypeDoc