Skip to content

Instantly share code, notes, and snippets.

@alancasagrande
Created November 16, 2020 01:54
Show Gist options
  • Save alancasagrande/61051101702e36e8e58fd69b59f6f492 to your computer and use it in GitHub Desktop.
Save alancasagrande/61051101702e36e8e58fd69b59f6f492 to your computer and use it in GitHub Desktop.
export async function verifyOtp(code) {
const res = await fetch('/verify_otp', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ code }),
});
return res.json();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment