10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
|
const getInteractionsButtonCoordenates = () => {
|
||
|
const el = document.getElementById('interactionsButton');
|
||
|
const coordenada = el.getBoundingClientRect();
|
||
|
return coordenada;
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
getInteractionsButtonCoordenates,
|
||
|
};
|