import React from 'react'; import PropTypes from 'prop-types'; import styles from './scrollable-canvas.css'; const ScrollableCanvasComponent = props => (
{props.children}
); ScrollableCanvasComponent.propTypes = { children: PropTypes.node.isRequired, hideScrollbars: PropTypes.bool, horizontalScrollLengthPercent: PropTypes.number, horizontalScrollStartPercent: PropTypes.number, onHorizontalScrollbarMouseDown: PropTypes.func.isRequired, onVerticalScrollbarMouseDown: PropTypes.func.isRequired, style: PropTypes.string, verticalScrollLengthPercent: PropTypes.number, verticalScrollStartPercent: PropTypes.number }; export default ScrollableCanvasComponent;