dify/web/app/components/workflow/nodes/template-transform/node.tsx
Stephen Zhou f2842da397
chore(web): new lint setup (#30020)
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
2025-12-23 16:58:55 +08:00

14 lines
336 B
TypeScript

import type { FC } from 'react'
import type { TemplateTransformNodeType } from './types'
import type { NodeProps } from '@/app/components/workflow/types'
import React from 'react'
const Node: FC<NodeProps<TemplateTransformNodeType>> = () => {
return (
// No summary content
<div></div>
)
}
export default React.memo(Node)