Exampl State (useState)

 import React,{useState} from "react";



export default function () {
//init State Crate inti 10
const [count,Sabir]=useState(10);


return <>
<div>
<center>
<h1>{count}</h1>
{/*===========================Update State==========*/}
<button onClick={()=>{Sabir((prevState) =>{return prevState+1})}} >Count++</button>
</center>
</div>
</>
}

Comments

Popular posts from this blog

App 1st User Define Component

Example 1

Rabiit