more
This commit is contained in:
@@ -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 (
|
||||
<div className="type-container">
|
||||
<div className="type-row">
|
||||
|
||||
@@ -40,4 +40,3 @@
|
||||
/>
|
||||
|
||||
*/
|
||||
*/
|
||||
Reference in New Issue
Block a user