UNPKG

react-floorplanner

Version:

react-floorplanner is a React Component for plans design. Draw a 2D floorplan and navigate it in 3D mode.

18 lines (14 loc) 465 B
import React from 'react'; import PropTypes from 'prop-types'; const STYLE = { padding: '0 20px', overflowY: 'auto' }; export default function ContentContainer({children, width, height, style = {}}) { return <div style={{width, height, ...STYLE, ...style}} onWheel={event => event.stopPropagation()}>{children}</div> } ContentContainer.propsType = { width: PropTypes.number.isRequired, height: PropTypes.number.isRequired, style: PropTypes.object };