import type { FC } from 'react' import React from 'react' import type { HttpNodeType } from './types' import type { NodeProps } from '@/app/components/workflow/types' const Node: FC> = ({ data, }) => { const { method, url } = data return (
{method}
{url}
) } export default React.memo(Node)