Skip to content

Instantly share code, notes, and snippets.

@DennisDurairaj
Created April 6, 2020 14:45
Show Gist options
  • Save DennisDurairaj/72e74e6f67aeaa594a0bc57edb562135 to your computer and use it in GitHub Desktop.
Save DennisDurairaj/72e74e6f67aeaa594a0bc57edb562135 to your computer and use it in GitHub Desktop.
import React from 'react';
import { useSelector } from 'react-redux';
export const Users = () => {
const users = useSelector(state => state.users);
return <div>{users.map(user => <p>user.name</p>)}</div>
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment