initial commit

This commit is contained in:
ray
2026-07-12 10:01:39 -04:00
commit fc8290d668
185 changed files with 38831 additions and 0 deletions
@@ -0,0 +1,11 @@
import { ListError } from '../ui/ListError';
export function ErrorState({
message,
onRetry,
}: {
message: string;
onRetry: () => void;
}) {
return <ListError title="Unable to load repair orders" message={message} onRetry={onRetry} />;
}