Boyd Dames
Boyd Dames
> ⚠️ This PR contains breaking changes based on deprecated methods by Slack (which presumably are already not working) and changes to which arguments are considered required and optional. The...
## Description Currently the dropdown components (and sub components) make it possible to render anything within the "popped out" box, but this gives us consumers a lot of freedom. I...
This PR adds prettier as a pre-commit hook and sets up some defaults. Closes #62
There's a lot of dependencies that are outdated. There are some easy updates and some harder ones. Some problematic ones: - [ ] Webpack - [ ] Airbnb ESLint config
For a better developer experience we should add the persistState enhancer for our redux store. More about that here: https://github.com/gaearon/redux-devtools/blob/master/docs/Walkthrough.md#storeconfigurestorejs
### Structure 1: ``` javascript { board: { you: [null, null, null, null, null, null, null], opponent: [null, null, null, null, null, null, null] }, player: { you: { name:...
Remove the hardcoded width and height that were added for debug purposes. Also it might be useful to split out the `CustomDragLayer` into multiple components. See `containers/CustomDragLayer/CustomDragLayer.js`'s `render()` function.
See: `containers/BoardSideDropTarget/BoardSideDropTarget.js` for an example on usage of ``` javascript ReactDOM.findDOMNode() ``` Possible solution: https://github.com/gaearon/react-dnd/issues/329