import { faCircleExclamation } from "@fortawesome/free-solid-svg-icons"; import { FestaIcon } from "../extensions/FestaIcon"; type ErrorInlineProps = { error: Error, text?: string } export function ErrorInline(props: ErrorInlineProps) { return (   {props.text ? <> {props.text}   : null} {JSON.stringify(props.error)} ) }