Added some API Requests

This commit is contained in:
Surya Vemulapalli
2025-03-30 00:56:09 -04:00
parent 6152e300c0
commit 4f70d0e335

View File

@@ -1,8 +1,14 @@
"use client"; "use client";
import { useState } from "react"; import { useState } from "react";
import { auth0 } from "../lib/auth0"; import { auth0 } from "../lib/auth0";
import { NextApiRequest, NextApiResponse } from "next";
export default async function Home() { export default async function Home() {
const [contacts, setContacts] = useState<string[]>([]); const [contacts, setContacts] = useState<string[]>([]);
const [codeword, setCodeword] = useState(""); const [codeword, setCodeword] = useState("");