import { JoDetail } from "@/app/api/jo"; import { decimalFormatter, integerFormatter } from "@/app/utils/formatUtil"; import { Box, Card, CardContent, Grid, Stack, TextField } from "@mui/material"; import { upperFirst } from "lodash"; import { useFormContext } from "react-hook-form"; import { useTranslation } from "react-i18next"; type Props = { }; const InfoCard: React.FC = ({ }) => { const { t } = useTranslation(); const { control, getValues, register, watch } = useFormContext(); return ( ) } export default InfoCard;