mirror of
https://github.com/langgenius/dify.git
synced 2026-08-03 11:46:37 +08:00
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
import SettingsTab from '@/app/components/deployments/instance-detail/settings-tab'
|
|
|
|
type PageProps = {
|
|
params: Promise<{ instanceId: string }>
|
|
}
|
|
|
|
const InstanceDetailSettingsPage = async ({ params }: PageProps) => {
|
|
const { instanceId } = await params
|
|
return <SettingsTab instanceId={instanceId} />
|
|
}
|
|
|
|
export default InstanceDetailSettingsPage
|