react-shaky
v0.0.4
Published
Shaky diagram component
Downloads
2
Readme
React Shaky Diagram
Use this component to draw a shaky diagram.
Code of drawing shaky diagram is ported from moe-js
and shaky.coffee
.
Usage
import ShakyCanvas from 'react-shaky';
const canvas = (
<ShakyCanvas>
{
`
+----+ +----+
|V8 | | |
| *+--+> JS|
+----+ +----+`
}
</ShakyCanvas>
);
ReactDOM.render(canvas, document.getElementById('shaky'));