import { faCircleExclamation } from "@fortawesome/free-solid-svg-icons"; import { FestaIcon } from "../extensions/FestaIcon"; type ErrorBlockProps = { error: Error, text: string } export function ErrorBlock(props: ErrorBlockProps) { return (

  {props.text}

                
                    {props.error.name} 
                    : 
                    {props.error.message}
                
            
) }