Contact: add topic and urgency state
cgen-7bd59ed4d7834dca927cba22168b1d11
This commit is contained in:
parent
399c03df4b
commit
2505fd6fe0
1 changed files with 2 additions and 0 deletions
|
|
@ -18,6 +18,8 @@ import { useState } from "react";
|
|||
export default function Contact() {
|
||||
const [name, setName] = useState("");
|
||||
const [email, setEmail] = useState("");
|
||||
const [topic, setTopic] = useState("general");
|
||||
const [urgency, setUrgency] = useState("normal");
|
||||
const [message, setMessage] = useState("");
|
||||
const [isSending, setIsSending] = useState(false);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue