Categories

Saturday, April 27, 2024
#919814419350 therichposts@gmail.com
Bootstrap 5ReactjsReactjs Tutorial

How to use the useState hook in React application?

How to use the useState hook in React application?

Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, How to use the useState hook in React application?

Guys with useState() hook we add a state variable to your component. The useState() hook can hold strings, arrays, numbers, objects etc.

Working Demo

For reactjs new comers, please check the below link for basic understanding:

Reactjs Basic Tutorials

How to use the useState hook in React application?
How to use the useState hook in React application?

Here is the working code snippet and please use carefully and avoid mistakes:

1. Firstly friends we need reactjs fresh setup and for then we need to run below commands into our terminal and also we should have latest node version installed on our pc:

npx create-react-app reactdemo

cd reactdemo 

npm install 

npm i bootstrap

npm i @popperjs/core

npm start

2. Now, we need to add below code into our src/app.js file or you can replace below code with existing one that you have into your src/app.js file:

import { useState } from 'react';
import 'bootstrap/dist/css/bootstrap.css'
function Theform(){
 
  //const[state, setState] = useState(initial value)
  const [count, setCount] = useState(0)
  
  const handleClick = () => {
    setCount(count + 1)
  }
  return (
    <div className='container p-5'>
      <button className='btn btn-primary' type='button' onClick={handleClick}>click {count} times</button>
    </div>
  )
}

export default Theform;

Guys in next video we will do form validation and popup form as well.

Now we are done friends. If you have any kind of query or suggestion or any requirement then feel free to comment below.

Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding and live working must watch video above.

I will appreciate that if you will tell your views for this post. Nothing matters if your views will good or bad.

Jassa

Thanks

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.