UNPKG
jc-biz-components
Version:
latest (1.0.3)
1.0.3
1.0.1
1.0.0
jc component library based on Antd
jc-biz-components
/
components
/
content
/
index.js
12 lines
(9 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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