Files
react-starter/app/components/loading/LoadingView.tsx
2026-03-01 13:40:53 +01:00

8 lines
178 B
TypeScript

export function LoadingView() {
return (
<div className="flex justify-center items-center">
<p className="sr-only">Loading...</p>
</div>
);
}