You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }