import React from 'react'; import MessageCard from '@custom/shared/components/MessageCard'; import { useRouter } from 'next/router'; export default function RoomNotFound() { const router = useRouter(); const returnToHomePage = () => router.push('/'); return (
The room you are trying to join does not exist. Have you created the room using the Daily REST API or the dashboard?
); }