export function createNodeContextMenu()

in integ/utils.ts [188:194]


export function createNodeContextMenu(id: string | undefined, container: HTMLElement) {
  if (!id) {
    return;
  }
  container.innerHTML = '';
  container.appendChild(createContextMenu(`This is the node: ${id}`));
}