react-scroll-box
Version:
Charged cross-browser and cross-platform scrollable container implementation with no external dependencies but React 0.13+
16 lines (13 loc) • 331 B
JavaScript
import React from 'react';
import {GenericScrollBox} from './GenericScrollBox';
export class ScrollBox extends React.Component {
render() {
return (
<GenericScrollBox {...this.props}>
<div className="scroll-box__viewport">
{this.props.children}
</div>
</GenericScrollBox>
);
}
}