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