import React, { Fragment } from 'react'; function ErrorBox(props){ if (props.msg) { console.error(props.msg); } return ( { (props.msg)? (
{ (typeof props.msg === 'string' || props.msg instanceof String)? props.msg : 'Unexpected error' }
) : null }
); } export default ErrorBox;