AwsMarketplaceOnboardingPlaceholder.tsx30 lines · main
| 1 | import { Skeleton } from '@ui/components/shadcn/ui/skeleton' |
| 2 | |
| 3 | import { |
| 4 | ScaffoldSection, |
| 5 | ScaffoldSectionContent, |
| 6 | ScaffoldSectionDetail, |
| 7 | } from '@/components/layouts/Scaffold' |
| 8 | |
| 9 | const AwsMarketplaceOnboardingPlaceholder = () => { |
| 10 | return ( |
| 11 | <ScaffoldSection> |
| 12 | <ScaffoldSectionDetail> |
| 13 | {Array(1) |
| 14 | .fill(0) |
| 15 | .map((_, i) => ( |
| 16 | <Skeleton key={i} className="w-full h-[110px] rounded-md" /> |
| 17 | ))} |
| 18 | </ScaffoldSectionDetail> |
| 19 | <ScaffoldSectionContent className="lg:ml-10"> |
| 20 | {Array(3) |
| 21 | .fill(0) |
| 22 | .map((_, i) => ( |
| 23 | <Skeleton key={i} className="w-full h-[110px] rounded-md" /> |
| 24 | ))} |
| 25 | </ScaffoldSectionContent> |
| 26 | </ScaffoldSection> |
| 27 | ) |
| 28 | } |
| 29 | |
| 30 | export default AwsMarketplaceOnboardingPlaceholder |