You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

node.tsx 297B

5 miesięcy temu
123456789101112
  1. import type { FC } from 'react'
  2. import { memo } from 'react'
  3. import type { DataSourceNodeType } from './types'
  4. import type { NodeProps } from '@/app/components/workflow/types'
  5. const Node: FC<NodeProps<DataSourceNodeType>> = () => {
  6. return (
  7. <div>
  8. </div>
  9. )
  10. }
  11. export default memo(Node)