UNPKG

react-planner-viewer

Version:

react-planner-viewer is a React Component for view plans builded with react-planner in 2D 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> }