darabos's picture
Set up Biome for JS linting/formatting.
8fe4e41
raw
history blame
292 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;