_ensNamePartsOf
Contract: JBProjectHandles
Mapping of project ID to an array of strings that make up an ENS name and its subdomains.
["jbx", "dao", "foo"] represents foo.dao.jbx.eth.
Definition
/**
  @notice
  Mapping of project ID to an array of strings that make up an ENS name and its subdomains.
  @dev
  ["jbx", "dao", "foo"] represents foo.dao.jbx.eth.
  _projectId The ID of the project to get an ENS name for.
*/
mapping(uint256 => string[]) internal _ensNamePartsOf;
- Arguments:
_projectIdis the ID of the project to get an ENS name for.
 - The resulting function is internal to this contract and its inheriters.