<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Outsourcing React development company &gt; Metasys Software Pvt Ltd.</title>
	<atom:link href="https://www.metasyssoftware.com/tag/outsourcing-react-development-company/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.metasyssoftware.com</link>
	<description>Unique People, Unique Solutions</description>
	<lastBuildDate>Tue, 04 Jun 2024 10:59:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.metasyssoftware.com/wp-content/uploads/2023/10/metasys-svg-.png</url>
	<title>Outsourcing React development company &gt; Metasys Software Pvt Ltd.</title>
	<link>https://www.metasyssoftware.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to implement Internationalization for a React Application</title>
		<link>https://www.metasyssoftware.com/react/how-to-implement-internationalization-for-a-react-application/</link>
					<comments>https://www.metasyssoftware.com/react/how-to-implement-internationalization-for-a-react-application/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 12:39:34 +0000</pubDate>
				<category><![CDATA[React]]></category>
		<category><![CDATA[React Native app development]]></category>
		<category><![CDATA[React native developer]]></category>
		<category><![CDATA[React app]]></category>
		<category><![CDATA[React app builder]]></category>
		<category><![CDATA[React Native app development company]]></category>
		<category><![CDATA[React Native development]]></category>
		<category><![CDATA[Outsourcing React development]]></category>
		<category><![CDATA[Offshore React services]]></category>
		<category><![CDATA[Outsourcing React development company]]></category>
		<category><![CDATA[React JS]]></category>
		<category><![CDATA[React developer]]></category>
		<guid isPermaLink="false">http://stage.metasyssoftware.com/?p=3440</guid>

					<description><![CDATA[<p>Internationalization of an application, document or product refers to the development of easy content localization, i.e. modifying the content to [&#8230;]</p>
The post <a href="https://www.metasyssoftware.com/react/how-to-implement-internationalization-for-a-react-application/">How to implement Internationalization for a React Application</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>Internationalization of an application, document or product refers to the development of easy content localization, i.e. modifying the content to target the language and culture of the region. Internationalizing an application leads to improved usability by people located across the globe.</p>
<p>There are two main aspects to internationalization, firstly the detection of the user’s local language, and secondly the modification of the content, including translation of the text, and switching relevant items such as currency.</p>
<p>This article addresses how to implement the internationalization of a React application using the library ‘React-intl’. The first step is to create a new React project and add the intl package:</p>
<ul>
<li>Create a React project using the commands –</li>
</ul>
<p><em>$ npx create-react-app project_i18n</em></p>
<p><em>         $ cd project_i18n</em></p>
<ul>
<li>Add the &#8216;react-intl&#8217; package.</li>
</ul>
<p>Configuration of the package consists of four main steps: creating the locales, creating the provider, and finally creating a common translator. In the remainder of this article, I will elaborate on these steps.</p>
<p>1. Create the locales –</p>
<p>a.Create a folder with the name ‘<em>i18n’</em> in your code folder.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-3227 size-full" title="i18n folder 2" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_1.png" alt="i18n folder 2" width="260" height="229" /></p>
<p>b.Create a file <em>&#8216;locale.js&#8217;</em> and export the locales object.</p>
<p><img decoding="async" class="alignnone wp-image-3228 size-full" title="locale js3" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_2.png" alt="locale js3" width="373" height="154" /></p>
<p>2. Create the provider –</p>
<p>a.Now, let’s create the Provider to hook the IntlProvider to the application.<br />
<img decoding="async" class="alignnone wp-image-3229 size-full" title="INTLprovider4" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_3.png" alt="INTLprovider4" width="461" height="307" /><br />
In the above image, IntlProvider is imported from react-intl and a wrapper is created for the application, setting the default locale and passing the message content according to the locale.</p>
<p>b.To create the messages for the respective languages, create a folder called ‘<em>MessageContent’</em> and create the locale files for messages within that folder.<br />
Let us create two different message objects.<br />
For English: &#8211; en-US.js –</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3231 size-full" title="EN-US5" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_4.png" alt="EN-US5" width="643" height="272" /></p>
<p>For French:- fr-CA.js –</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3232 size-full" title="FR-CA 6" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_5.png" alt="FR-CA 6" width="643" height="242" /></p>
<p>c. Create an ‘<em>js’</em> file under the MessageContent folder to export the messages.<br />
MessageContent-&gt; index.js –</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3233 size-full" title="Messagecontent 7" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_6.png" alt="Messagecontent 7" width="642" height="237" /></p>
<p>3. Create a common translator –</p>
<p>a.Let us create a common Translate function to translate the message according to the locale.<br />
i18n-&gt; translate.js –</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3234 size-full" title="Commontranslator8" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_7.png" alt="Commontranslator8" width="639" height="124" /></p>
<p>b.Create <em>‘index.js’ </em>under the ‘<em>i18n’</em> folder to export the locales and provider as default.<br />
i18n-&gt; index.js –</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3235 size-full" title="index.js9" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_8.png" alt="index.js9" width="642" height="85" /></p>
<p>c.Finally, let us wrap the application with IntlProvider and set the locale in App.js.<br />
src-&gt; App.js –</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3236 size-full" title="wrappingapp10" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_9.png" alt="wrappingapp10" width="643" height="520" /></p>
<p>Example for French Locale –</p>
<p>fr-CA.js</p>
<p>export default {</p>
<p>[LOCALES.FRENCH]: { &#8216;hello&#8217;: &#8216;Bonjour&#8217;, &#8216;userName&#8217;: &#8216;le nom d\&#8217; utilisateur est {uname}&#8217;</p>
<p>}</p>
<p>};</p>
<p>translate.js</p>
<p>const translate = (id, value={}) =&gt; &lt;FormattedMessage id={id} values={{…value}}/&gt;</p>
<p>d. We are looking for the following output:</p>
<p>translate(‘hello&#8217;)  =&gt; Bonjour</p>
<p>translate(&#8216;userName&#8217;, {&#8216;uname&#8217;: ‘Sam&#8217;}) =&gt; le nom d&#8217; utilisateur est Sam</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3237 size-full" title="Bonjour11" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/iir_10.png" alt="Bonjour11" width="659" height="260" /></p>
<p>Internationalization can be achieved in react application by using ‘React-intl&#8217; with minimal development efforts for handling multiple languages.</p>
<p>MetaSys has developed custom React solutions for clients across various industries and geographies. If you have any questions on internationalization in your <a href="https://www.metasyssoftware.com/case-study-react-native">React</a> projects, then please feel free to contact us. Happy coding!</p>The post <a href="https://www.metasyssoftware.com/react/how-to-implement-internationalization-for-a-react-application/">How to implement Internationalization for a React Application</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.metasyssoftware.com/react/how-to-implement-internationalization-for-a-react-application/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>React Redux &#8211; The art of state management</title>
		<link>https://www.metasyssoftware.com/react/react-redux-the-art-of-state-management/</link>
					<comments>https://www.metasyssoftware.com/react/react-redux-the-art-of-state-management/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Thu, 27 Aug 2020 13:42:18 +0000</pubDate>
				<category><![CDATA[React]]></category>
		<category><![CDATA[React native developer]]></category>
		<category><![CDATA[React web app]]></category>
		<category><![CDATA[React mobile development company]]></category>
		<category><![CDATA[Outsourcing React services]]></category>
		<category><![CDATA[Outsourcing React development]]></category>
		<category><![CDATA[React JS]]></category>
		<category><![CDATA[Offshore React services]]></category>
		<category><![CDATA[React Redux]]></category>
		<category><![CDATA[Outsourcing React development company]]></category>
		<category><![CDATA[React Native]]></category>
		<category><![CDATA[React developer]]></category>
		<category><![CDATA[React JS development company]]></category>
		<category><![CDATA[React Native app development]]></category>
		<guid isPermaLink="false">https://www.metasyssoftware.com/?p=3182</guid>

					<description><![CDATA[<p>React is one of the most popular technologies for front-end development, which uses a component based approach to enable fast [&#8230;]</p>
The post <a href="https://www.metasyssoftware.com/react/react-redux-the-art-of-state-management/">React Redux – The art of state management</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p><strong>React</strong> is one of the most popular technologies for front-end development, which uses a component based approach to enable fast app development. <strong>Redux</strong> is a predictable state container for JS apps, and works particularly well with React.  In this article, I will be covering some basics on how to set up React-Redux for state management of a UI.</p>
<p>To illustrate the advantages of this approach, have a look at the UI structure shown below.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3183 size-full" title="UI structure image 1" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_1.png" alt="UI structure image 1" width="643" height="361" /></p>
<p>Let’s say the functionality required is that when a user interacts with the big component, the application has to update the small component and the header. In other words, we need to sync the header and small component as well as manage the states of all the other components. Without a state management library such as the one provided by Redux, coding this implementation can easily become very complicated.</p>
<p>Using the state functionality in React allows only the use of local, component level states.</p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-3184 aligncenter" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_2.png" alt="Image 2" width="252" height="52" /></p>
<p>You can store the states using setState method, and fetch the stored state using state.[STATE_NAME]. However, these states are local, and only available within the class component in which it is declared.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3185 size-full" title="Setstate image3" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_3.png" alt="Setstate image3" width="575" height="133" /></p>
<p>To store the states at the application level, i.e. the global level, in order to access them from different components, we can use React-Redux.</p>
<p><strong><u>Let’s see how React-Redux works</u></strong></p>
<p>You will see three main elements in the Redux architecture – Store, Dispatch Actions and Reducers.</p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-3186 aligncenter" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_4.png" alt="Redux architecture 4" width="642" height="319" /></p>
<p><strong>Store</strong>: holds the states at the application level, and allows any component to get data from the store in the form of Redux States.</p>
<p><strong>Dispatch Action:</strong> a function of the Redux Store to trigger a state change.</p>
<p><strong>Reducers</strong>: It handles the value change in Redux State.</p>
<p><strong><u>How to configure React Redux in a React JS project –</u></strong></p>
<p>The following packages are needed to be installed to configure  Redux in the project &#8211;</p>
<ol>
<li><strong>Redux</strong>: the core package of React Redux.</li>
<li><strong>React-redux:</strong> needed for React bindings.</li>
<li><strong>Redux-thunk: </strong>a middleware which allows you to call action creators, and which returns a function instead of the action object.</li>
</ol>
<p>These dependencies can be installed by using the following NPM command &#8211;<br />
“<strong>npm install redux react-redux redux-thunk &#8211;save</strong>”</p>
<p>After these dependencies are installed, a store can be created and initialized with data/null values as per the requirements. This can be done by creating the file store.js in the project.</p>
<p>First however, you need to create reducer.js to handle the next states. Below is the example of reducer.js to initialize the state. Here, it is just returning the initial value from the reducer.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3187 size-full" title="reducer.js 5" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_5.png" alt="reducer.js 5" width="447" height="150" /></p>
<p>Below is a slightly more complex example of the code in reducer.js to update the states based on the action executed from the component.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3188 size-full" title="coding 6" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_6.png" alt="coding 6" width="425" height="261" /></p>
<p>In the above example, it adds the data to the state upon the dispatch action (ADD_DATA). Now let’s create the action to dispatch. You can create a file with the name action.js, that contains the code shown below.</p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-3189 aligncenter" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_7.png" alt="action.js 7" width="379" height="113" /></p>
<p>Once the action is created, now you can create a store and then connect the store to the application. You can create a file with the name store.js, that contains the code shown below.</p>
<p><img loading="lazy" decoding="async" class="wp-image-3190 size-full aligncenter" title="store.js 8" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_8.png" alt="store.js 8" width="478" height="251" /></p>
<p>To connect the store to the application, you will have to use the entry point. In the index.js (i.e. entry point of the app), import the store as shown below &#8211;</p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-3191 aligncenter" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_9.png" alt="coding 9" width="367" height="249" /></p>
<p>These are all the Redux configurations for an application. Refer the the image below to use it in your component –</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3192 size-full" title="React component 10" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_10.png" alt="React component 10" width="642" height="671" /></p>
<p><a href="https://www.metasyssoftware.com/react">React Redux</a> can handle large amounts of data at the application level with cleaner components and is particularly useful for big applications.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3193 size-full" title="Without Redux 11" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_11.png" alt="Without Redux 11" width="336" height="317" /></p>
<p><img loading="lazy" decoding="async" class="wp-image-3194 size-full aligncenter" title="With Redux 12" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/RRAM_12.png" alt="With Redux 12" width="336" height="288" /></p>
<p>Without redux, to transfer data from component 1 to component 5, you need to pass it through middle components. This increases the props for components and creates more complexity and the components are less clean.</p>
<p>Using React-Redux, you can get or set the data to the store from any of the components directly by mapping the redux states to component props. In this case, you do not need to pass props to the middle components. This allows for much cleaner components and increased clarity in the code.</p>
<p>If you are looking to build a mobile or web application using React technology, then please feel free to contact us.</p>The post <a href="https://www.metasyssoftware.com/react/react-redux-the-art-of-state-management/">React Redux – The art of state management</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.metasyssoftware.com/react/react-redux-the-art-of-state-management/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Our experience of using React Hooks and what you can learn from it!</title>
		<link>https://www.metasyssoftware.com/react/react-hooks-and-what-you-can-learn-from-it/</link>
					<comments>https://www.metasyssoftware.com/react/react-hooks-and-what-you-can-learn-from-it/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Fri, 24 Jul 2020 10:51:48 +0000</pubDate>
				<category><![CDATA[React]]></category>
		<category><![CDATA[Offshore React services]]></category>
		<category><![CDATA[Outsourcing React development company]]></category>
		<category><![CDATA[React JS]]></category>
		<category><![CDATA[Offshore React development services]]></category>
		<category><![CDATA[React developer]]></category>
		<category><![CDATA[React Native app development]]></category>
		<category><![CDATA[React native developer]]></category>
		<category><![CDATA[React mobile app development]]></category>
		<category><![CDATA[React Hooks]]></category>
		<category><![CDATA[React programming]]></category>
		<category><![CDATA[React development services]]></category>
		<category><![CDATA[React development company]]></category>
		<guid isPermaLink="false">https://www.metasyssoftware.com/?p=3131</guid>

					<description><![CDATA[<p>React JS is now a very popular programming language. React Hooks has unlocked new capabilities and allows you to create [&#8230;]</p>
The post <a href="https://www.metasyssoftware.com/react/react-hooks-and-what-you-can-learn-from-it/">Our experience of using React Hooks and what you can learn from it!</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>React JS is now a very popular programming language. React Hooks has unlocked new capabilities and allows you to create great applications. It allows one to write very compact code. We share our experience of how we have used React Hooks. We assume here that you have some React Programming knowledge.</p>
<p>React Hooks are functions that allow you to hook into React lifecycle and state features. They primarily serve as an alternative for classes. They can help in keeping your components clean and perform better. Hooks are a recent  addition in React version 16.8.0.</p>
<p>In this article, we are going to show you how to convert a React class into a functional component using the useState Hook.</p>
<p>Hooks don’t work inside classes because they let you use React without classes. We will use the built-in hooks instead of React lifecycle methods. Eg. useState, useEffect, useRef etc.</p>
<p>We are covering useState, useEffect, useRef React hooks in this article. useState() is used to replace the constructor functions and state declarations. While useEffect() is used to replace componentDidMount() and componentDidUpdate(). You can use useEffect as many times as you need to in single component. And the last one, useRef has another cool usage besides DOM refs, it is also a generic container whose current property is mutable, it also can hold any value similar to an instance property of a class.</p>
<p><strong>Steps to convert a React class component into a functional component using React Hooks –</strong></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3132" src="https://www.metasyssoftware.com/wp-content/uploads/2022/07/Our_experience_of_using_React_1.png" alt="React Hooks " width="655" height="512" /></p>
<p>Step 1. Change ‘class ComponentName extends Component’ With ‘function ComponentName(props)‘</p>
<p>Step 2. Remove “this.” And “this.state” from the entire component.</p>
<p>Step 3. import React, { useState } from ‘react’</p>
<p>Step 4. Remove the constructor. Add its logic as shown above in the image for initializing the state variables with the help of useState hook.</p>
<p><strong>Let’s understand conversion into useState, useEffect and useRef with examples –</strong></p>
<ul>
<li><strong>useState() Hook –</strong></li>
</ul>
<p>The parameter of the useState hook is the initial value of the state. This hook provides the array with two values – the first is the name of the state and the second is the function name which updates the value of that state.</p>
<p>Eg.</p>
<p>const [num, setNum] = useState(0); //declaration</p>
<p>setNum(10) //use</p>
<p>Here num is the state name, setCount is the function that you can use anywhere in the component to update that state.</p>
<p>Here are some examples of setting or initializing state variables for different data types –</p>
<p>//Set an Integer</p>
<p>const [num, setNum] = useState(0);</p>
<p>setNum(10);</p>
<p>&nbsp;</p>
<p>//Set a String</p>
<p>const [name, setUsername] = useState(‘John’);</p>
<p>setUsername(‘Smith’);</p>
<p>&nbsp;</p>
<p>//Set a Boolean</p>
<p>const [isValid, setIsValid] = useState(false);</p>
<p>setIsValid(true);</p>
<p>&nbsp;</p>
<p>//Set and Array</p>
<p>const [items, setItems] = useState([]);</p>
<p>setItems([0,1,2,3,4]);</p>
<p>setItems([{id:0, color:”red”},{id:1, color:”green”},{id:2, color:”blue”}]);</p>
<p>&nbsp;</p>
<p>//Set and Object</p>
<p>const [form, setValues] = useState({</p>
<p>id: 0,</p>
<p>firstName: ‘’,</p>
<p>lastName: ‘’,</p>
<p>subscribe: false</p>
<p>})</p>
<p>&nbsp;</p>
<p>setValues({</p>
<p>…form,</p>
<p>firstName: ‘Jamie’,</p>
<p>subscribe: true</p>
<p>})</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<ul>
<li><strong>Replace lifecycle methods (compentDidMount, componentWillUnmount,</strong></li>
</ul>
<p><strong> componentWillReceiveProps, componentDidUpdate) with useEffect</strong></p>
<p>&nbsp;</p>
<p>e.g.</p>
<p>const [items, setItems] = useState([]);</p>
<p>const [num, setNum] = useState(0);</p>
<p>&nbsp;</p>
<ol>
<li>compentDidMount</li>
</ol>
<p>&nbsp;</p>
<p>useEffect(()=&gt;{</p>
<p>setItems(items);</p>
<p>}, [])   // Here empty array indicates don&#8217;t look for any updates</p>
<p>&nbsp;</p>
<p>b.componentWillUnmount</p>
<p>&nbsp;</p>
<p>useEffect(()=&gt;{</p>
<p>return () =&gt; {console.log(‘unmounting the component’)}</p>
<p>},[])</p>
<p>&nbsp;</p>
<p>c. componentDidUpdate/componentWillReceiveProps</p>
<p>This will get executed when your ‘num’ state variable and ‘id’ props will get updated.</p>
<p>&nbsp;</p>
<p>useEffect(()=&gt;{</p>
<p>if (!isEmpty(num))</p>
<p>{</p>
<p>console.log(‘num changed = ’,num);</p>
<p>setItems(items);</p>
<p>}</p>
<p>&nbsp;</p>
<p>if(!isEmpty(props.id))</p>
<p>{</p>
<p>console.log(‘props.id changed = ’,props.id);</p>
<p>}</p>
<p>},[num, props.id])</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<ul>
<li><strong>Use of </strong><strong>useRef</strong></li>
</ul>
<p>&nbsp;</p>
<p>const [num, setNum] = useState(0);</p>
<p>const prevNumRef = useRef();</p>
<p>useEffect(()=&gt;{</p>
<p>prevNumRef.current = num;</p>
<p>})</p>
<p>const prevNum = prevNumRef.current;</p>
<p>return &lt;h1&gt;Current value : {num}, previous value = {prevNum}&lt;/h1&gt;</p>
<p>&nbsp;</p>
<p><strong>Advantages</strong></p>
<p>1.With React hooks, the component will be cleaner and easier to read (fewer lines of code). Hooks are easier to work with and to test.</p>
<p>2.It is easy to make code reusable. They don’t create another element in DOM like HOCs in React do.</p>
<p>3. useState &#8211; it allows to update different states with specific functions. The ability to move the state update logic as a separate hook.</p>
<p>&nbsp;</p>
<p><strong>Disadvantages </strong></p>
<p>1.useEffect hook allows to merge three lifecycle methods such as componentDidMount, componentWillUnmount and componentDidUpdate into one and the issue with useEffect is the second parameters ,i.e. the array that we need to pass to define this behaviour. It is not explicit enough.</p>
<p>2.React Hooks are new additions to React. So to convert and test a complex class can be a time-consuming task initially .</p>
<p>3.Since it is relatively a new addition it may not be compatible with all third party libraries. But this is rapidly changing .</p>
<p>This is all about React Hooks in a nutshell. If you are looking to build any a mobile or web application using React technology, then please <a href="https://www.metasyssoftware.com/contact">contact us</a>.</p>
<p>Happy coding!</p>The post <a href="https://www.metasyssoftware.com/react/react-hooks-and-what-you-can-learn-from-it/">Our experience of using React Hooks and what you can learn from it!</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.metasyssoftware.com/react/react-hooks-and-what-you-can-learn-from-it/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
