import React from "react"; import styles from "./CallEndedView.module.css"; import { LinkButton } from "../button"; import { useProfile } from "../ConferenceCallManagerHooks"; import { Subtitle, Body, Link, Headline } from "../typography/Typography"; import { Header, HeaderLogo, LeftNav, RightNav } from "../Header"; export function CallEndedView({ client }) { const { displayName } = useProfile(client); return ( <>
{displayName}, your call is now ended
Why not finish by setting up a password to keep your account? You'll be able to keep your name and set an avatar for use on future calls Create account
Not now, return to home screen
); }