UNPKG

react-floorplanner

Version:

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

10 lines (7 loc) 214 B
import React from 'react'; const BASE_STYLE = { marginBottom: "16px" }; export default function FormBlock({children, style, ...rest}) { return <div style={{...BASE_STYLE, style}} {...rest}>{children}</div> }