summaryrefslogtreecommitdiff
path: root/src/utils.js
blob: 4153adaf71064d0f371bb44ac31a861e0b57a5e7 (plain) (blame)
1
2
3
4
5
6
7
8
export const listNotes = (notes) => {
  notes.forEach(({ id, content, tags }) => {
    console.log("id: ", id);
    console.log("tags: ", tags);
    console.log("content: ", content);
    console.log("\n");
  });
};