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);
|
||||
|
||||
Reference in New Issue
Block a user