export function IncomingCalls({ calls }: Props) { return (

Incoming Calls

{calls.length > 0 ?
{calls.map(call => )} :

It's lonely out here

}
); }