function handleTitleClick()

in src/components/Tree/TreeNode.tsx [19:30]


  function handleTitleClick() {
    if (hasChildren) {
      setExpand(!expand);
      onExpand(title, !expand);
    } else {
      onClick({
        title,
        content,
        link,
      });
    }
  }