Skip to content

Commit

Permalink
update useEffect blog's keywords (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
abolfazlcodes authored Nov 20, 2024
1 parent fbbec13 commit 1161128
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ keywords:
author: "Abolfazl Jamshidi"
isDraft: false
image: "/blogs/useRef-vs-useState-When-to-Use-Each.jpg"
featured: true
imageCaption: "caption"
category: tech
featured: true
---

As React developers, we save data, update it, or even change our applications' UI daily. So, it is a must to know our day-to-day tools inside out.
Expand Down
6 changes: 4 additions & 2 deletions src/content/blogs/4-useEffect-deep-dive-into-it.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "useEffect - Deep Dive Into It"
summary: "Effects let you specify side effects caused by rendering itself, rather than by a particular event. Generally speaking, effects help us operate a piece of code automatically when a part of the application becomes visible in the UI. In web applications, posting a comment, deleting a row from a table, connecting to a chatroom server, etc. are all side effects."
summary: "Understand useEffect completely and handle your side effect easily. Effects let you specify side effects caused by rendering itself, rather than by a particular event. Generally speaking, effects help us operate a piece of code automatically when a part of the application becomes visible in the UI. In web applications, posting a comment, deleting a row from a table, connecting to a chatroom server, etc. are all side effects."
publishedAt: "2024-11-10"
tags:
[
Expand Down Expand Up @@ -34,14 +34,16 @@ keywords:
"hooks",
"react blogs",
"useEffect",
"effect",
"complete useEffect guide",
"side effects",
"abolfazl jamshidi",
]
author: "Abolfazl Jamshidi"
featured: true
isDraft: false
image: "/blogs/useEffect.webp"
category: tech
featured: true
---

> Effects let you specify side effects caused by rendering itself, rather than by a particular event.
Expand Down

0 comments on commit 1161128

Please sign in to comment.