dify/web/features/agent-v2/agent-detail/page.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

25 lines
756 B
TypeScript

'use client'
import type { AgentDetailSectionKey } from './section'
import { AgentAccessPage } from './access/page'
import { AgentConfigurePage } from './configure/page'
import { AgentLogsPage } from './logs/page'
import { AgentMonitoringPage } from './monitoring/page'
type AgentDetailPageProps = {
agentId: string
section: AgentDetailSectionKey
}
export function AgentDetailPage({ agentId, section }: AgentDetailPageProps) {
if (section === 'monitoring') return <AgentMonitoringPage agentId={agentId} />
if (section === 'logs') return <AgentLogsPage agentId={agentId} />
if (section === 'access') return <AgentAccessPage agentId={agentId} />
if (section === 'configure') return <AgentConfigurePage agentId={agentId} />
return null
}