mirror of
https://github.com/davidmarkclements/0x.git
synced 2026-01-18 14:38:23 +00:00
9 lines
263 B
JavaScript
9 lines
263 B
JavaScript
'use strict'
|
||
|
||
module.exports = (render) => (action) => render`
|
||
<div class='absolute dn db-l' style="right: 180px;top:8px">
|
||
<button onclick=${() => action({type: 'out'})}>−</button>
|
||
<button onclick=${() => action({type: 'in'})}>+</button>
|
||
</div>
|
||
`
|