1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-08-09 11:32:44 +02:00
parent 1032235744
commit cb8b683d43
292 changed files with 15840 additions and 0 deletions

View file

@ -0,0 +1,13 @@
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()