Better reflect failure UI

This commit is contained in:
Gregory Schier
2024-02-05 14:50:47 -08:00
parent 5ad13a61e6
commit 0dc6b2d9e7
13 changed files with 584 additions and 395 deletions

View File

@@ -1,7 +1,8 @@
import classNames from 'classnames';
import type { ReactNode } from 'react';
interface Props {
children: string;
children: ReactNode;
}
export function FormattedError({ children }: Props) {