dify/web/features/agent-v2/agent-detail/configure/components/page-loading.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

12 lines
303 B
TypeScript

'use client'
import Loading from '@/app/components/base/loading'
export function AgentConfigurePageLoading({ label }: { label: string }) {
return (
<section aria-label={label} aria-busy className="flex h-full min-w-0 flex-1 bg-background-body">
<Loading type="app" />
</section>
)
}