mirror of
https://github.com/davidmarkclements/0x.git
synced 2026-01-18 14:38:23 +00:00
9 lines
268 B
JavaScript
9 lines
268 B
JavaScript
'use strict'
|
||
|
||
module.exports = (render) => (action) => render`
|
||
<div class='fr dn db-l h-100 mr1'>
|
||
<button class='h-100' onclick=${() => action({ type: 'out' })}>−</button>
|
||
<button class='h-100' onclick=${() => action({ type: 'in' })}>+</button>
|
||
</div>
|
||
`
|