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
/
KrishnamohanHeader.js
8 lines
(6 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ krishna }
from
'../krishnamohan.js'
;
export
function
KrishnamohanHeader
(
{ title =
"Welcome to KrishnamohanJS"
}
) {
return
krishna.
createElement
(
"h1"
, {
style
:
"font-size: 2rem; text-align: center; color: #222; margin-bottom: 1rem;"
}, title); }