diff --git a/src/Components/Case/CaseTypePage.js b/src/Components/Case/CaseTypePage.js index 89809af..67627f0 100644 --- a/src/Components/Case/CaseTypePage.js +++ b/src/Components/Case/CaseTypePage.js @@ -1,6 +1,7 @@ import { useState } from "react"; import { Typeahead } from "react-bootstrap-typeahead"; import Radiogroup from "../../pageElements/Radiogroup"; +import { caseTags } from "../../Constants/Tags/CaseTags"; import "../../styles/casetype-page.scss"; const CaseTypePage = () => { @@ -9,6 +10,7 @@ const CaseTypePage = () => { 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" }, @@ -18,6 +20,7 @@ const CaseTypePage = () => { console.log("e", e); setRadioValue(e.value); }; + return (
diff --git a/src/pageElements/TagSelector.js b/src/pageElements/TagSelector.js index 82a726d..d5c60d2 100644 --- a/src/pageElements/TagSelector.js +++ b/src/pageElements/TagSelector.js @@ -40,4 +40,3 @@ /> */ - */ \ No newline at end of file