import React from 'react'; import Button from '@custom/shared/components/Button'; import { Card, CardBody, CardHeader } from '@custom/shared/components/Card'; import { TextInput } from '@custom/shared/components/Input'; import Tile from '@custom/shared/components/Tile'; import VideoContainer from '@custom/shared/components/VideoContainer'; import { DEFAULT_ASPECT_RATIO } from '@custom/shared/constants'; import { useParticipants } from '@custom/shared/contexts/ParticipantsProvider'; import Container from './Container'; import Header from './Header'; export const InviteOthers = () => { const { localParticipant } = useParticipants(); return (
Waiting for others to join?

Copy the link and invite them to the call!

) } export default InviteOthers;