mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
16 lines
326 B
TypeScript
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
|