mirror of
https://github.com/langgenius/dify.git
synced 2026-07-30 08:49:31 +08:00
12 lines
303 B
TypeScript
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>
|
|
)
|
|
}
|