Files
dify/web/app/components/workflow/nodes/code/panel.tsx
2024-02-19 19:44:48 +08:00

10 lines
132 B
TypeScript

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