UNPKG
b0nes
Version:
latest (0.1.11)
0.1.11
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.0
0.0.1
Zero-dependency component library and SSR/SSG framework
github.com/iggydotdev/b0nes
iggydotdev/b0nes
b0nes
/
src
/
components
/
atoms
/
video
/
video.show.js
5 lines
(4 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
import
{ video }
from
"./index.js"
;
export
const
show
= (
) => {
return
video
({
attrs
:
'controls'
,
className
:
'custom-video'
,
slot
:
'<source srcset="video.mp4" class="video-src custom-video" controls id="video-source"/>'
}); };