1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-02-15 03:00:50 +01:00
2021-05-03 21:45:50 +02:00

8 lines
204 B
JavaScript

export function createAnchorElement({ document, text, url }) {
const a = document.createElement('a')
a.setAttribute('href', url)
a.setAttribute('target', '_blank')
a.innerHTML = text
return a
}