import * as React from "react"; export interface IButtonLineComponentProps { data: string; tooltip: string; } export class DraggableLineComponent extends React.Component { constructor(props: IButtonLineComponentProps) { super(props); } render() { return (
{ event.dataTransfer.setData("babylonjs-gui-node", this.props.data); }}> {this.props.data.replace("Block", "")}
); } }