UNPKG
c1-cms
Version:
latest (6.2.18)
6.2.18
6.2.17
6.2.16
6.2.15
Contains React components distributed with C1 CMS.
c1-cms
/
console
/
components
/
presentation
/
DataFieldWrapper.js
19 lines
(12 loc)
•
288 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import
React
, {
PropTypes
}
from
'react'
;
import
styled
from
'styled-components'
;
const
DataFieldWrapper
= styled.
div
` position: relative; margin-bottom: 4px; &::after { display: block; content: ""; clear: both; } `
;
export
default
DataFieldWrapper
;