(精華2020年5月25日更新) react基礎篇 react-hooks的useState用法

2b勿擾發表於2020-05-25
import React , {useState} from 'react'

const addCon = ()=>{
    console.log(useState(0));
    
    const [count,setCount] = useState(0)
    const handelAdd = () =>{
        let newCount = count;
        setCount(newCount+=1)
    }
    return (
        <div>
            <p>{count}</p>
            <button onClick={handelAdd}>新增</button>
        </div>
    )
}

export default addCon

相關文章