import { Skeleton } from '@/components/ui/skeleton'; import { NodeProps, Position } from '@xyflow/react'; import { memo } from 'react'; import { NodeHandleId } from '../../constant'; import { CommonHandle } from './handle'; import { LeftHandleStyle } from './handle-icon'; import { NodeWrapper } from './node-wrapper'; function InnerPlaceholderNode({ id, selected }: NodeProps) { return (
); } export const PlaceholderNode = memo(InnerPlaceholderNode);