initial commit
This commit is contained in:
@@ -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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user