README
apeman-react-mixin-scroll
Handle scrolling
Installation
$ npm install apeman-react-mixin-scroll --save
Usage
#!/usr/bin/env node
'use strict'
import React from 'react'
import {ApScrollMixin} from 'apeman-react-mixin-scroll'
// Define own component with the mixin
const ExampleComponent = React.createClass({
mixins: [
ApScrollMixin
],
render () {
return (
<div>{ /* ... */ }</div>
)
}
})
License
This software is released under the MIT License.