UNPKG
krishnamohan-yagneswaran-ui
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A lightweight custom UI framework built by Krishnamohan Yagneswaran
krishnamohan-yagneswaran-ui
/
src
/
components
/
KrishnamohanCard.js
8 lines
(6 loc)
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ krishna }
from
'../krishnamohan.js'
;
export
function
KrishnamohanCard
(
{ children }
) {
return
krishna.
createElement
(
"div"
, {
style
:
"padding: 1rem; border: 1px solid #ccc; border-radius: 8px; margin: 1rem 0;"
}, ...(
Array
.
isArray
(children) ? children : [children])); }