Files
sign/apps/remix/app/components/embed/embed-client-loading.tsx

8 lines
200 B
TypeScript
Raw Normal View History

2024-09-04 23:13:00 +10:00
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>
);
};