import PropTypes from 'prop-types'; import RoomLink from '@/components/RoomLink'; const Welcome = ({ roomId, translations, close }) => { return (
v2.0 is a complete rewrite and includes several new features. Here are some highlights:
You can learn more{' '} here .

Others can join this room using the following URL:

); }; Welcome.propTypes = { roomId: PropTypes.string.isRequired, close: PropTypes.func.isRequired, translations: PropTypes.object.isRequired, }; export default Welcome;