'use strict'; const html = htm.bind(preact.h); const update_main_slide = (data, time, config) => { const hour = time.toFormat('HH'); const minute = time.toFormat('mm'); const sep = time.second % 2 === 0 ? ':' : '.'; const inner = html`
${hour}${sep}${minute}
`; const anchorElId = "clock"; const el = document.getElementById(anchorElId); preact.render(inner, el); }; export { update_main_slide };