UNPKG

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) 335 B
import React from 'react'; import {AbstractScrollBox} from './AbstractScrollBox'; export class ScrollBox extends React.Component { render() { return ( <AbstractScrollBox {...this.props}> <div className="scroll-box__viewport"> {this.props.children} </div> </AbstractScrollBox> ); } }