more
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { Typeahead } from "react-bootstrap-typeahead";
|
import { Typeahead } from "react-bootstrap-typeahead";
|
||||||
import Radiogroup from "../../pageElements/Radiogroup";
|
import Radiogroup from "../../pageElements/Radiogroup";
|
||||||
|
import { caseTags } from "../../Constants/Tags/CaseTags";
|
||||||
import "../../styles/casetype-page.scss";
|
import "../../styles/casetype-page.scss";
|
||||||
|
|
||||||
const CaseTypePage = () => {
|
const CaseTypePage = () => {
|
||||||
@@ -9,6 +10,7 @@ const CaseTypePage = () => {
|
|||||||
const [billingCode, setBillingCode] = useState("");
|
const [billingCode, setBillingCode] = useState("");
|
||||||
const [leadAttorney, setLeadAttorney] = useState("");
|
const [leadAttorney, setLeadAttorney] = useState("");
|
||||||
const [radioValue, setRadioValue] = useState();
|
const [radioValue, setRadioValue] = useState();
|
||||||
|
|
||||||
const radioOptions = [
|
const radioOptions = [
|
||||||
{ name: "Plaintiff", label: "Plaintiff", value: "Plaintiff" },
|
{ name: "Plaintiff", label: "Plaintiff", value: "Plaintiff" },
|
||||||
{ name: "Defendant", label: "Defendant", value: "Defendant" },
|
{ name: "Defendant", label: "Defendant", value: "Defendant" },
|
||||||
@@ -18,6 +20,7 @@ const CaseTypePage = () => {
|
|||||||
console.log("e", e);
|
console.log("e", e);
|
||||||
setRadioValue(e.value);
|
setRadioValue(e.value);
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="type-container">
|
<div className="type-container">
|
||||||
<div className="type-row">
|
<div className="type-row">
|
||||||
|
|||||||
@@ -40,4 +40,3 @@
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
*/
|
|
||||||
Reference in New Issue
Block a user