'use client' import { SkeletonContainer, SkeletonRectangle, SkeletonRow } from '@/app/components/base/skeleton' const DEPLOY_FORM_FIELD_SKELETON_KEYS = ['environment', 'release'] export function DeployFormSkeleton() { return (
{DEPLOY_FORM_FIELD_SKELETON_KEYS.map(key => ( ))}
) }