export default function(opts) { return new Promise((res, rej) => { const x = window.prompt(opts.title); if (x) { res(x); } }); }