This commit is contained in:
Joel 2024-03-01 17:09:53 +08:00
parent 604930db64
commit c2eaa32036
1 changed files with 17 additions and 0 deletions

View File

@ -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)