Files
lab5/app/components/error/ErrorView.tsx
2026-03-19 16:37:01 +01:00

8 lines
135 B
TypeScript

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