It's really a personal preference because of two reasons:
1) Ease of change: We can change useAuth to use a different context in one place, compared to if we called React.useContext several times through out the app
2) Readability, for example rather than saying React.useContext(AuthContext), we could just say useAuth(), which is less verbose.