Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
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}`;
- }
|