dify/web/app/components/workflow/nodes/code/panel.tsx

13 lines
206 B
TypeScript

import type { FC } from 'react'
import BasePanel from '../_base/panel'
const Panel: FC = () => {
return (
<BasePanel>
<div>start panel inputs</div>
</BasePanel>
)
}
export default Panel