Files
documenso/apps/remix/app/components/embed/embed-client-loading.tsx
2025-02-13 14:10:38 +11:00

8 lines
200 B
TypeScript

export const EmbedClientLoading = () => {
return (
<div className="bg-background fixed left-0 top-0 z-[9999] flex h-full w-full items-center justify-center">
Loading...
</div>
);
};