type StatusProps = { text: string; mark: string; }; export const Status: React.FunctionComponent = (props) => (

{props.text}:{" "} {props.mark}

);