@wq/material-web
Version:
Web bindings for @wq/material
23 lines (20 loc) • 452 B
JavaScript
import React from "react";
import PropTypes from "prop-types";
export default function ScrollView({ children, style }) {
return (
<div
style={{
overflowX: "hidden",
overflowY: "auto",
flex: 1,
...style,
}}
>
{children}
</div>
);
}
ScrollView.propTypes = {
children: PropTypes.node,
style: PropTypes.object,
};