Skip to content

Instantly share code, notes, and snippets.

View keon's full-sized avatar

Keon keon

View GitHub Profile
"use client";
import { useGoogleLogin } from "@react-oauth/google";
import { Passport } from "@0xpass/passport";
import { useCallback, useState } from "react";
import OTPInput from "./components/OTPInput";
export default function Home() {
const [email, setEmail] = useState("");
const [otp, setOtp] = useState("");
const passport = new Passport();
"use client";
import { useGoogleLogin } from "@react-oauth/google";
import { Passport } from "@0xpass/passport";
import { useCallback, useState } from "react";
import OTPInput from "./components/OTPInput";
export default function Home() {
const [email, setEmail] = useState("");
const [otp, setOtp] = useState("");
const passport = new Passport();