Skip to content

Instantly share code, notes, and snippets.

@antondevv
Created April 2, 2022 12:43
Show Gist options
  • Save antondevv/7ca9a49942efb664d7eebc84075d3b15 to your computer and use it in GitHub Desktop.
Save antondevv/7ca9a49942efb664d7eebc84075d3b15 to your computer and use it in GitHub Desktop.
display user
import { useSelector } from "react-redux";
function App() {
const user = useSelector((state) => state.userReducer);
return (
<div className="App">
<h1>Name: {user.name}</h1>
<h1>Age: {user.age}</h1>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment