diff --git a/src/Components/Case/CaseTypePage.js b/src/Components/Case/CaseTypePage.js index 8c4c633..89809af 100644 --- a/src/Components/Case/CaseTypePage.js +++ b/src/Components/Case/CaseTypePage.js @@ -1,12 +1,23 @@ import { useState } from "react"; - +import { Typeahead } from "react-bootstrap-typeahead"; +import Radiogroup from "../../pageElements/Radiogroup"; import "../../styles/casetype-page.scss"; + const CaseTypePage = () => { const [email, setEmail] = useState(""); const [contactName, setContactName] = useState(""); const [billingCode, setBillingCode] = useState(""); const [leadAttorney, setLeadAttorney] = useState(""); + const [radioValue, setRadioValue] = useState(); + const radioOptions = [ + { name: "Plaintiff", label: "Plaintiff", value: "Plaintiff" }, + { name: "Defendant", label: "Defendant", value: "Defendant" }, + ]; + const handleSetRadioValue = (e) => { + console.log("e", e); + setRadioValue(e.value); + }; return (