* Removed emptyscreen component v1 version, migrated pages that still used it to v2, and removed v1 of workflow pages and components. * updated workflow pages imports to remove v2 from path. * Deleted v1 switch component, deleted v1 api-keys components, deleted old web integrations components that were unused. * Removed v1 list component. * Fixed event workflows tab path. * Fixed import path for button in sandbox page. * Cleanup and type fixes * Making explicit indexes * UI import migrations * More import fixes * More import fixes * Submodule sync * Type fixes * Build fixes Co-authored-by: zomars <zomars@me.com>
24 lines
794 B
TypeScript
24 lines
794 B
TypeScript
import { SkeletonContainer, SkeletonText } from "@calcom/ui";
|
|
|
|
function SkeletonLoader() {
|
|
return (
|
|
<SkeletonContainer>
|
|
<div className="mt-10 ml-2 md:flex">
|
|
<div className="mr-6 flex flex-col md:flex-none">
|
|
<SkeletonText className="h-4 w-28" />
|
|
<SkeletonText className="mt-2 mb-6 h-8 w-full md:w-64" />
|
|
<SkeletonText className="h-4 w-28" />
|
|
<SkeletonText className="mt-2 h-8 w-full md:w-64" />
|
|
<SkeletonText className="mt-8 hidden h-0.5 w-full md:block" />
|
|
<SkeletonText className="mt-8 mb-6 h-8 w-40" />
|
|
</div>
|
|
<div className="hidden flex-grow md:flex">
|
|
<SkeletonText className="h-64 w-full" />
|
|
</div>
|
|
</div>
|
|
</SkeletonContainer>
|
|
);
|
|
}
|
|
|
|
export default SkeletonLoader;
|