import React from "react"; import { Button, StyleSheet, Text, View } from "react-native"; interface Props { callFrom: string, onAnswerAccepted: () => void, onAnswerRejected: () => void } const NewCallScreen = (props: Props) => { return ( `New Incoming Call: ${props.callFrom}`