| 2 | import { createContext } from "react"; |
| 3 | |
| 4 | interface UserContextType { |
| 5 | user: GetUserResponse; |
| 6 | updateUser: (updatedUser: Partial<GetUserResponse>) => void; |
| 7 | } |
| 8 | |
| 9 | const UserContext = createContext<UserContextType | undefined>(undefined); |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected