Package Exports
- react-measure
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-measure) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Measure 0.0.6
Compute measurements of React components.
Example Usage
import Measure from 'react-measure';
<Measure onChange={this._handleOnChange}>
{({width, height, top, left}) =>
<div>
{/* do cool stuff with my dimensions */}
</div>
}
</Measure>