Skip to content

Instantly share code, notes, and snippets.

@DennisDurairaj
Created April 6, 2020 14:44
Show Gist options
  • Save DennisDurairaj/b1c87a230d31e0cf40ad2bd10e63eac5 to your computer and use it in GitHub Desktop.
Save DennisDurairaj/b1c87a230d31e0cf40ad2bd10e63eac5 to your computer and use it in GitHub Desktop.
import React from 'react';
import { useSelector } from 'react-redux';
export const Users = () => {
const selectUsers = state => state.users;
const users = useSelector(selectUsers);
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