Posts

Create rating Componnat

 myRating.html < template >     < h1 > Review & Ratings </ h1 >     < lightning-card title = "Rate Customer" >         < div class = "slds-m-around_medium" >             < template for:each = {starItems} for:item = "item" >                 < lightning-button-icon                     key = {item.star}                     icon-name = "utility:favorite"                     alternative-text = "Rate"                     data-id = {item.star}                     onclick = {handleRating}                     onmouseover = {handleMouseOver} ...