Dapatkan Pengguna Moralis Web3 saat ini login

const currentUser = Moralis.User.current();
if (currentUser) {
    // do stuff with the user
} else {
    // show the signup or login page
}
Relieved Raccoon