// material-ui import { FormControl, Grid, Typography, FormLabel, OutlinedInput, Button, // TextField, // Autocomplete, } from '@mui/material'; // import { useFormik } from 'formik'; import * as React from "react"; import Loadable from 'components/Loadable'; const MainCard = Loadable(React.lazy(() => import('components/MainCard'))); import { useForm } from 'react-hook-form'; // ==============================|| DASHBOARD - DEFAULT ||============================== // const ApplicationDetailCard = ({ formData, _onSubmit, handleDelete }) => { // const [data, setData] = React.useState({}); // React.useEffect(() => { // if (formData) { // setData(formData); // } // }, [formData]); // const formik = useFormik({ // enableReinitialize: true, // initialValues: data, // }); const DisplayField = ({ name, width, value, rows = 1, disabled = false }) => { return ; } const { register, handleSubmit } = useForm() // const DisplaySelection = ({ name = "test", value = "", onChange }) => { // return ( // // )} // /> // } return ( Maintain Email Template
{/* Email Key: */} Key: Description: Params: Subject (Cht): Content (Cht): Subject (Chs): Content (Chs): Subject (Eng): Content (Eng): {/*bottom button*/}
); }; export default ApplicationDetailCard;