/** * Inline error notice shown in a chart block when its query failed. * * @param props - Localized error message. * @return The notice element. */ export function ChartErrorNotice({ message }: { message: string }): JSX.Element { return
{ message }
; }