UNPKG
@blaze/atoms
Version:
latest (13.1.0)
13.1.0
13.0.1
13.0.0
12.1.1
12.1.0
12.0.3
12.0.0
11.0.3
11.0.2
11.0.1
9.2.0
9.1.0
9.0.2
9.0.1
9.0.0
8.0.0
7.0.0
6.2.1
6.2.0
6.1.0
6.0.2
6.0.1
6.0.0
5.2.1
5.2.0
5.1.1
5.1.0
5.0.2
5.0.1
5.0.0
4.0.0
Open Source UI Toolkit - Atoms
www.blazeui.com
BlazeSoftware/atoms
@blaze/atoms
/
dist
/
collection
/
components
/
card
/
blaze-card.js
9 lines
(8 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ h,
Component
}
from
'@stencil/core'
;
export
class
Card
{
render
(
) {
return
(
h
(
"div"
, {
class
:
"c-card"
},
h
(
"slot"
,
null
))); }
static
get
is
() {
return
"blaze-card"
; } }