Created
May 11, 2020 14:17
-
-
Save aabccd021/3973e42170aba3a8c93dff48930b995a to your computer and use it in GitHub Desktop.
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 * as React from 'react'; | |
const { useState } = React; | |
export const UseStateSample = () => { | |
const [count, setCount] = useState(0); | |
return ( | |
<p> | |
<button onClick={() => setCount(count - 1)}>-</button> | |
<b>{count}</b> | |
<button onClick={() => setCount(count + 1)}>+</button> | |
</p> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment