UNPKG

@wq/material-web

Version:

Web bindings for @wq/material

21 lines (20 loc) 475 B
import React from "react"; import PropTypes from "prop-types"; export default function ScrollView({ children, style }) { return /*#__PURE__*/ React.createElement( "div", { style: { overflowX: "hidden", overflowY: "auto", flex: 1, ...style, }, }, children ); } ScrollView.propTypes = { children: PropTypes.node, style: PropTypes.object, };