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

  {props.text}

                
                    {JSON.stringify(props.error, undefined, 4)}
                
            
) }