Skip to content

Instantly share code, notes, and snippets.

@alejandrosobko
Created November 19, 2018 15:20
Show Gist options
  • Save alejandrosobko/73bd00f0a19cebdb9c671b7b5c6b3f6c to your computer and use it in GitHub Desktop.
Save alejandrosobko/73bd00f0a19cebdb9c671b7b5c6b3f6c to your computer and use it in GitHub Desktop.
export default (props: any) =>
<Droppable droppableId={props.droppableId}>
{(provided: any) => (
<div className={props.className}
ref={provided.innerRef}
{...provided.droppableProps}
{...provided.droppablePlaceholder}>
{props.children}
</div>
)}
</Droppable>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment