UNPKG
showw-image
Version:
latest (1.0.0)
1.0.0
To show the image
github.com/ababeel-ceo/showimage
ababeel-ceo/showimage
showw-image
/
index.js
13 lines
(10 loc)
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
React
=
require
(
"react"
);
const
ImageContainer
=
require
(
"./ImageContainer"
);
function
ShowImages
(
link
) {
return
React
.
createElement
(
ImageContainer
, {
lnk
: link },
null
); }
module
.
exports
=
ShowImages
;