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
/
ImageContainer.js
8 lines
(5 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
React
=
require
(
"react"
);
const
ImageContainer
= (
{ lnk }
) => {
return
React
.
createElement
(
"img"
, {
src
: lnk,
alt
:
"No Image Found"
}); };
module
.
exports
=
ImageContainer
;