more
This commit is contained in:
@@ -39,7 +39,6 @@ const SignupPage = () => {
|
||||
const [showPaymentModal, setShowPaymentModal] = useState(false);
|
||||
const [showSelectPlan, setShowSelectPlan] = useState(true);
|
||||
const [activeRadioOption, setActiveRadioOption] = useState("monthlyBasic");
|
||||
const modalText = "Description of monthly and annual subscriptions";
|
||||
const [selectedPlan, setSelectedPlan] = useState({});
|
||||
const [isAnnualBilling, setIsAnnualBilling] = useState(false);
|
||||
// Could also go in App.js if needed in the future
|
||||
@@ -50,9 +49,7 @@ const SignupPage = () => {
|
||||
? process.env.REACT_APP_API_DEV
|
||||
: process.env.REACT_APP_API_PROD;
|
||||
|
||||
const basicPrice = 59;
|
||||
const proPrice = 139;
|
||||
const unlimtedPrice = 169;
|
||||
const modalText = "Description of monthly and annual subscriptions";
|
||||
|
||||
const handleChangeInput = (e, name) => {
|
||||
const newData = handleFormDataChange(e, name, data, signupFields);
|
||||
|
||||
@@ -7,6 +7,7 @@ export const signupRadioFields = [
|
||||
"1 document per month",
|
||||
"Carryover 1 document to next period",
|
||||
"24/7 support",
|
||||
"First month is free!",
|
||||
],
|
||||
details: "",
|
||||
pricing: [
|
||||
|
||||
@@ -45,7 +45,7 @@ const Radio = (props) => {
|
||||
</div>
|
||||
<div className="radio-circle-lower">
|
||||
<div className="radio-description-box">
|
||||
{description.map((item) => {
|
||||
{description.map((item, i) => {
|
||||
return <p className="signup-feat-item">{item}</p>;
|
||||
})}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user