While this is an easy way to get the "context" ``` <UserData.Consumer>{context => ... </UserData.Consumer> ``` A hook would make my code easier to read. ``` const UserProfile = () => { const context = useUser(); // better name needed return (....) } ``` Thoughts?