mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
8 lines
200 B
TypeScript
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>
|
|
);
|
|
};
|