Skip to content

Instantly share code, notes, and snippets.

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