tapes/assets/script/Start.js
Ro b72650ed2f Intial Project Commit
first commit to get all the project files in there
2025-03-05 16:14:37 -06:00

9 lines
140 B
JavaScript

import TapeDeck from "./TapeDeck.js";
document.addEventListener(
"DOMContentLoaded",
function () {
new TapeDeck();
},
false
);