# useUsers https://www.sanity.io/learn/course/build-content-apps-with-sanity-app-sdk/use-users.md Render an interactive list of Sanity project users to assign to documents. Storing user data against documents can be useful for instances such as user "assignment." You can add another document editing control to display all users in a project as a clickable list to set a user ID as a value in a document. 1. **Create** a new component `Assignee` to query for project users and render their avatars. ```tsx:app-feedback/src/Assignee.tsx import { DocumentHandle, useEditDocument, useUsers } from "@sanity/sdk-react" import { Inline, Avatar, Stack, Text, Button } from "@sanity/ui" type AssigneeProps = { value: string handle: DocumentHandle } export function Assignee({ value, handle }: AssigneeProps) { const { data: users } = useUsers() const editAssignee = useEditDocument({ ...handle, path: "assignee" }) return ( Assignee {users?.map((user) => ( ))} ) } ``` 1. **Update** the `FeedbackEdit` component to include it ```tsx:app-feedback/src/FeedbackEdit.tsx ``` There is another hook to quickly retrieve the details of the currently logged in user. We can use it to filter the documents returned in `useDocuments`. Let's put it to work in the next lesson.