ReferenceError: Can't find variable: useAuth

ReferenceError: Can’t find variable: useAuth

Assuming that you are working on the “DoneWithIt” app for react Native: you should have a module here: /app/auth/useAuth.js

This needs to be imported in the module where you are using it - example:

import useAuth from '../auth/useAuth';

Thanks a lot for tour help.