"use client"; import React, { useState } from "react"; import { Button, Input } from "@heroui/react"; import Provision from "../cards/Provision"; type Props = { changeCurrentPage: React.Dispatch>; }; const FullNameInput = ({ changeCurrentPage }: Props) => { const [fullName, setFullName] = useState(""); return ( <> setFullName(e.target.value)} classNames={{ input: "text-md font-light pt-4", inputWrapper: "flex gap-10", }} /> ); }; export default FullNameInput;