From 37f7a74b97fd2c012f64c5337aa54978251722e1 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Fri, 12 Aug 2022 16:43:27 +0400 Subject: [PATCH] Add functional components resources --- .../102-components/100-functional-components.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/103-react/content/100-react-fundamental-topics/102-components/100-functional-components.md b/content/roadmaps/103-react/content/100-react-fundamental-topics/102-components/100-functional-components.md index 6d2d7cba1..7cd8e34d3 100644 --- a/content/roadmaps/103-react/content/100-react-fundamental-topics/102-components/100-functional-components.md +++ b/content/roadmaps/103-react/content/100-react-fundamental-topics/102-components/100-functional-components.md @@ -1 +1,7 @@ -# Functional components \ No newline at end of file +# Functional Components + +Functional components are some of the more common components that will come across while working in React. These are simply JavaScript functions. We can create a functional component to React by writing a JavaScript function. These functions may or may not receive data as parameters. In the functional Components, the return value is the JSX code to render to the DOM tree. Functional components can also have state which is managed using React hooks. + +Free Content +Components and Props +ReactJS Functional Components