您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

functions.ts 294B

12345678
  1. /**
  2. * Converts the meetingOptions domain and roomName to a URL that can be passed to the App component.
  3. * @param {*} domain domain address from props.
  4. * @param {*} roomName room name from props.
  5. */
  6. export function convertPropsToURL(domain, roomName) {
  7. return `${domain}/${roomName}`;
  8. }