Last active
May 5, 2020 16:39
-
-
Save showlovezz/dc5f8c914bca0b93413f97c85abaced5 to your computer and use it in GitHub Desktop.
鼠年全馬鐵人挑戰 - React Hooks useState 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react' | |
const Example = () => { | |
// useState 採用 0 為初始值 | |
const [count, setCount] = useState(0) | |
return ( | |
<div> | |
<p>You clicked {count} times</p> | |
<button onClick={() => setCount(count + 1)}> | |
Click me | |
</button> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment