import { useState } from "react"; import { BlueButton } from "@/components/button"; import { TextInput } from "@/components/textInput"; export default function LoginForm({ onSubmit, title, placeholder, buttonText}) { const [value, setValue] = useState(""); function handleSubmit(e) { e.preventDefault(); setValue(""); onSubmit(value); } return (

{title}

setValue(e.target.value)} name="team-id"/> {buttonText} ) }