for an array with a tree structure like this, I want to replace all name with title,. The hierarchy of the array varies, and some may not have children in it.
const treeData = [{
    title: "0-0",
    key: "0-0",
    children: [{
      title: "0-0-0",
      key: "0-0-0",
      children: [
        { title: "0-0-0-0", key: "0-0-0-0" },
        { title: "0-0-0-1", key: "0-0-0-1" },
        { title: "0-0-0-2", key: "0-0-0-2" },
      ],
    }, {
      title: "0-0-1",
      key: "0-0-1",
      children: [
        { title: "0-0-1-0", key: "0-0-1-0" },
        { title: "0-0-1-1", key: "0-0-1-1" },
        { title: "0-0-1-2", key: "0-0-1-2" },
      ],
    }, {
      title: "0-0-2",
      key: "0-0-2",
    }],
  }, {
    title: "0-1",
    key: "0-1",
    children: [
      { title: "0-1-0-0", key: "0-1-0-0" },
      { title: "0-1-0-1", key: "0-1-0-1" },
      { title: "0-1-0-2", key: "0-1-0-2" },
    ],
  }, {
    title: "0-2",
    key: "0-2",
    children: []
  }];