Skip to content

Instantly share code, notes, and snippets.

@bashidagha
Created February 26, 2022 04:05
Show Gist options
  • Save bashidagha/4f3fc926bd212d642889dc621eaa9842 to your computer and use it in GitHub Desktop.
Save bashidagha/4f3fc926bd212d642889dc621eaa9842 to your computer and use it in GitHub Desktop.
import {useDispatch, useSelector} from 'react-redux'
const Header = ()=> {
const user = useSelector((state) => state.username);
const dispatch = useDispatch();
return (
<div>{user}
<button onClick={()=> dispatch({type: "updateUser"})}>Change User</button>
</div>
)
}
export default Header
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment