Skip to content

Instantly share code, notes, and snippets.

@bewarusman
Last active September 29, 2021 13:31
Show Gist options
  • Select an option

  • Save bewarusman/523b56973bad48d3ed0d22c0ab79f278 to your computer and use it in GitHub Desktop.

Select an option

Save bewarusman/523b56973bad48d3ed0d22c0ab79f278 to your computer and use it in GitHub Desktop.
import { useRecoilValue } from "recoil";
function UsersList() {
const users = useRecoilValue(usersState);
return (
<ul>
{users.map((user) => (
<li key={user.id}>{user.name}</li>
))}
</ul>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment