UNPKG
preact-glam
Version:
latest (1.0.0)
1.0.0
A tiny glamorous implementation for preact
github.com/vesparny/preact-glam
vesparny/preact-glam
preact-glam
/
src
/
__test__
/
index.test.js
10 lines
(8 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/**
@jsx
h */
import
glam
from
'../index'
test
(
'should pass glam object prop'
,
() =>
{
const
Comp
=
glam
(
'div'
)({
marginLeft
:
1
})
expect
(
Comp
).
toBeDefined
() })