mirror of https://github.com/langgenius/dify.git
temp
This commit is contained in:
parent
604930db64
commit
c2eaa32036
|
|
@ -0,0 +1,17 @@
|
|||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
|
||||
type Props = {
|
||||
prompt: string
|
||||
}
|
||||
|
||||
const ConfigPrompt: FC<Props> = ({
|
||||
prompt,
|
||||
}) => {
|
||||
return (
|
||||
<div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(ConfigPrompt)
|
||||
Loading…
Reference in New Issue