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