Files
dify/web/app/components/workflow/nodes/code/panel.tsx
StyleZhang 6caca3aaf7 base panel
2024-02-19 17:58:54 +08:00

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