gaearon / ama

Ask me anything!
222 stars 5 forks source link

Custom Drag Preview in React DnD #124

Open jtrezza opened 8 years ago

jtrezza commented 8 years ago

Hello, Dan

Is it possible to use a custom node made in JSX that isn't rendered as the dradPreview?

Something like:

render() {
  let node = <div>Hello</div>;
  this.props.connectDragPreview(node);
  return <div>Something else</div>;
}