UNPKG
@emsipl/react-data-grid-addons
Version:
latest (6.1.8)
7.0.6-alpha.0
6.1.8
6.1.7
6.1.6
6.1.5
6.1.4
6.1.3
6.1.2
6.1.1
6.1.0
A set of addons for react-data-grid
@emsipl/react-data-grid-addons
/
lib
/
formatters
/
ImageFormatter.js
6 lines
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
import React
from
'react'
; export
default
function
ImageFormatter
(
_a
)
{
var
value = _a.value;
return
React.
createElement
(
"div"
, {
className
:
"react-grid-image"
,
style
: {
backgroundImage
:
"url("
+ value +
")"
} }); }
//# sourceMappingURL=ImageFormatter.js.map