useEffect(() => {
// Set isloading to true
// read token from local storage
// if token exists,
// read user data from local storage
// set the user variable
// set isAuthenticated to true
// if token doesn't exist,
// set isAuthenticated to false
// set isLoading to false
}, []);