"use client"; import React, { useState } from "react"; import styles from "./styles.module.css"; import TextField from "@/app/components/fields/textfield"; import CustomCheckbox from "@/app/components/checkbox/CheckBox"; import SelectField from "@/app/components/select/SelectField"; import RadioButton from "@/app/components/radio-button/RadioButton"; const ProjectDetails = ({ register, handleSubmit, errors, onSubmit, triggerAlert, disableScaling, disableReadiness, disableLiveness, setDisableScaling, setDisableReadiness, setDisableLiveness, setTriggerAlert, minPods, maxPods, readinessPath, readinessPort, livenessPort, livenessPath, setIsEnableIngress, isEnableIngress, ...props }) => { return (
); }; export default ProjectDetails;