import tippy from 'tippy.js'; export function createTippy(target, opts) { return tippy(target, { appendTo: document.body, placement: 'top-start', animation: false, allowHTML: true, arrow: ``, ...opts, }); }