payment logic done

This commit is contained in:
2021-11-18 22:32:55 -03:00
parent 0ff5b5b92a
commit 4bbffe9d0c
10 changed files with 165 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
const logoLink = () => {
const logo = document.querySelector('header .logo')
logo.addEventListener('click', () => {
window.location = '../'
})
}
export default logoLink