5.3.2.1 컴포넌트 파일 생성
ScrollBox.js
import React, { Component } from 'react'; class ScrollBox extends Component { render() { const style = { border: '1px solid black', height: '300px', width: '300px', overflow: 'auto', position: 'relative' }; const innerStyle = { width: '100%', height: '650px', background: 'linear-gradient(white, black)' } return ( <div style={style} ref={(ref) => {this.box=ref}}> <div style={innerStyle}/> </div> ); } } export default ScrollBox;