react-magic-move
v0.1.0
Published
MagicMove for React.js
Downloads
9
Maintainers
Readme
React Magic Move
Magic Move for React.JS
Usage
- Wrap some ordered elements in
<MagicMove/>
- Add a key to each element
- Add some CSS transitions and border-box sizing (so the code can measure it more easily)
.Something {
transition: all 500ms ease;
box-sizing: border-box;
}
<MagicMove>
{this.sortedElementsWithKeys(this.state.sortBy)}
</MagicMove>