dify/web/app/components/workflow/nodes/end/node.tsx

10 lines
115 B
TypeScript

import type { FC } from 'react'
const Node: FC = () => {
return (
<div>end</div>
)
}
export default Node