Files
dify/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/develop/page.tsx
2024-01-11 11:08:32 +08:00

16 lines
326 B
TypeScript

import React from 'react'
import { type Locale } from '@/i18n'
import DevelopMain from '@/app/components/develop'
export type IDevelopProps = {
params: { locale: Locale; appId: string }
}
const Develop = async ({
params: { appId },
}: IDevelopProps) => {
return <DevelopMain appId={appId} />
}
export default Develop