react-cm-ui
Version:
React UI for Healthy Church
17 lines (14 loc) • 350 B
JSX
import MuiBox from '@material-ui/core/Box';
import React from 'react';
/**
* The Box component serves as a wrapper component for most of the CSS utility needs.
*/
function Box(props) {
return (
<MuiBox
// eslint-disable-next-line react/jsx-props-no-spreading
{...props}
/>
);
}
export default Box;