Files
lab4/app/components/error/ErrorView.tsx
2026-03-12 16:35:33 +01:00

8 lines
135 B
TypeScript

export function ErrorView() {
return (
<div>
<p>Ups, an unexpected error occurred.</p>
</div>
);
}