Severian's picture
initial commit
a8b3f00
raw
history blame
310 Bytes
import type { FC } from 'react'
import React from 'react'
import type { CodeNodeType } from './types'
import type { NodeProps } from '@/app/components/workflow/types'
const Node: FC<NodeProps<CodeNodeType>> = () => {
return (
// No summary content
<div></div>
)
}
export default React.memo(Node)