Last active
August 13, 2022 17:05
-
-
Save koss-lebedev/d3cd55237aaea086fb1dfb15786b4eca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const useActiveUsers = () => { | |
const { users } = useUsers() | |
const activeUsers = useMemo(() => { | |
return getOnlyActive(users) | |
}, [users]) | |
return { activeUsers } | |
} | |
const ActiveUsersList = () => { | |
const { activeUsers } = useActiveUsers() | |
return ( | |
<ul> | |
{activeUsers.map(user => | |
<UserItem key={user.id} user={user} /> | |
)} | |
</ul> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment