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