lynxkite / web /src /workspace /nodes /NodeWithImage.tsx
darabos's picture
Fix node with image.
d1d859f
raw
history blame
274 Bytes
import NodeWithParams from './NodeWithParams';
const NodeWithImage = (props: any) => {
return (
<NodeWithParams {...props}>
{props.data.display && <img src={props.data.display} alt="Node Display" />}
</NodeWithParams>
);
};
export default NodeWithImage;