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.
12345678 |
- /**
- * Converts the meetingOptions domain and roomName to a URL that can be passed to the App component.
- * @param {*} domain domain address from props.
- * @param {*} roomName room name from props.
- */
- export function convertPropsToURL(domain, roomName) {
- return `${domain}/${roomName}`;
- }
|