import React, { Fragment } from 'react'; interface ErrorBoxProps { msg: string; } const ErrorBox: React.FC = (props) => { if (props.msg) { console.error(props.msg); } return ( { (props.msg)? (
{ typeof props.msg === 'string' ? props.msg : 'Unexpected error' }
) : null }
); }; export default ErrorBox;