UNPKG

jc-biz-components

Version:

jc component library based on Antd

12 lines (9 loc) 273 B
import React from 'react' const Content = ({ padding = 26, children, background = '#fff', ...otherProps }) => { return ( <div style={{ padding, borderRadius: 4, height: '100%', background }} {...otherProps}> {children} </div> ) } export default Content