const html = require('choo/html'); import { setFileProtocolWssUrl, getFileProtocolWssUrl } from '../../app/api'; export default function preferences(state, emit) { const wssURL = getFileProtocolWssUrl(); function updateWssUrl(event) { state.wssURL = event.target.value; setFileProtocolWssUrl(state.wssURL); emit('render'); } function clickDone(event) { event.preventDefault(); emit('pushState', '/'); } return html`
done
wss url:
`; }