import React from "react"; import { Modal, ModalContent } from "../Modal"; import { Button } from "../button"; import { FieldRow } from "../input/Input"; import styles from "./JoinExistingCallModal.module.css"; export function JoinExistingCallModal({ onJoin, ...rest }) { return (

This call already exists, would you like to join?

); }