This commit is contained in:
Nordi98 2025-08-09 11:32:17 +02:00
parent 1ee6dbef40
commit 1032235744
356 changed files with 1 additions and 25585 deletions

View file

@ -1,13 +0,0 @@
class CustomApp {
constructor() {
window.addEventListener('message', (event) => {
if (!event.data) return
const e = event.data
if (e.customevent === 'test') {
console.log(`TEST!`)
}
})
}
}
const customApp = new CustomApp()