addNotePrompt()}>Add Note
{#if notes}
{#each notes as note}
handleMouseOverLi(note.id)} on:mouseout={() => handleMouseOutLi(note.id)}>
onNoteLiClick(note)}>
{note.attributes.title}
{note.attributes.lastViewed.toLocaleDateString()}
deleteNotePrompt(note)}>
{/each}
{/if}