@seracio/recycle
v0.2.5
Published
A set of React components to make charts rapidly
Downloads
6
Readme
recycle
A set of React components to make charts rapidly
Usage
import { xy } from '@seracio/recycle';
render(
<xy.Chart data={data} x={_.get('x')} y={_.get('y')}>
<xy.Dot size={d => 2 + Math.random() * 20} />
<xy.Axis />
</xy.Chart>,
document.querySelector('#root')
);