From c7db305fab5712ea19765b49fd8f79a977ad0b8e Mon Sep 17 00:00:00 2001
From: SamarS1ngh <112770584+SamarS1ngh@users.noreply.github.com>
Date: Mon, 31 Oct 2022 14:12:38 +0530
Subject: [PATCH] Added additional details about Hooks (#2715)
added a more user friendly description about what hooks in react do, so that learners can understand the concept quickly and easily
---
.../100-react-fundamental-topics/108-basic-hooks/readme.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/content/roadmaps/103-react/content/100-react-fundamental-topics/108-basic-hooks/readme.md b/content/roadmaps/103-react/content/100-react-fundamental-topics/108-basic-hooks/readme.md
index a05e6674c..248fda045 100644
--- a/content/roadmaps/103-react/content/100-react-fundamental-topics/108-basic-hooks/readme.md
+++ b/content/roadmaps/103-react/content/100-react-fundamental-topics/108-basic-hooks/readme.md
@@ -1,6 +1,7 @@
# Hooks
-Hooks were introduced in React 16.8 and they let us use state and other React features without writing a class
+Hooks were introduced in React 16.8 and they let us use React's features-like managing your component's state and or performing an after effect when certain changes occur in state(s) without writing a class.
+
Free Content
Introduction to Hooks