// main.js import {getReviewsFromStorage, saveReviewsToStorage} from './localStorage.js'; // Run the init() function when the page has loaded window.addEventListener('DOMContentLoaded', init); function init() { // Get the reviews from localStorage let reviews = getReviewsFromStorage(); // Add each recipe to the
element addReviewsToDocument(reviews); // Add the event listeners to the form elements initFormHandler(); } /** * @param {Array} reviews An array of reviews */ function addReviewsToDocument(reviews) { let mainEl = document.querySelector('main') reviews.forEach(review=> { let newReview = document.createElement('review-card') newReview.data = review mainEl.append(newReview); }) } /** * Adds the necesarry event handlers to
and the clear storage *