9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
|
|
// Main JavaScript file
|
||
|
|
// Add your custom JavaScript here
|
||
|
|
|
||
|
|
document.addEventListener('DOMContentLoaded', function() {
|
||
|
|
// Initialize any JavaScript functionality here
|
||
|
|
console.log('App initialized');
|
||
|
|
});
|
||
|
|
|