Skip to content

Commit

Permalink
Update Walkthrough.md
Browse files Browse the repository at this point in the history
Fix syntax.
  • Loading branch information
Andreyco committed Apr 20, 2015
1 parent 48fbd2c commit 57dcf1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Walkthrough.md
Expand Up @@ -80,7 +80,7 @@ var Image = React.createClass({
{...this.dragSourceFor(ItemTypes.IMAGE)} />
);
}
);
});
```

By specifying `configureDragDrop` in `statics`, we tell `DragDropMixin` the drag-drop behavior of this component. Both draggable and droppable components use the same mixin.
Expand Down Expand Up @@ -137,7 +137,7 @@ var ImageBlock = React.createClass({
</div>
);
}
);
});
```

### Drag Source + Drop Target In One Component
Expand Down Expand Up @@ -194,7 +194,7 @@ var ImageBlock = React.createClass({
</div>
);
}
);
});
```

### Dropping Files from the Hard Drive
Expand Down Expand Up @@ -235,7 +235,7 @@ var ImageUploader = React.createClass({
</div>
);
}
);
});
```

### What Else Is Possible?
Expand Down

0 comments on commit 57dcf1c

Please sign in to comment.