17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
/**
|
|
* Main Application Module
|
|
* Entry point for the application, initializes all components
|
|
*/
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
// Initialize all modules
|
|
DataManager.init();
|
|
UI.init();
|
|
Charts.init();
|
|
|
|
// Render initial data
|
|
UI.renderWeightTable();
|
|
UI.renderMealTable();
|
|
|
|
console.log('Weight Tracker app initialized successfully');
|
|
});
|