0x/visualizer/cmp/zoom.js
davidmarkclements 44205e5f21 responsive ui
2018-03-14 16:30:38 +01:00

9 lines
263 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'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>
`