import Link from "next/link"; import { useRouter } from "next/router"; import useTranslation from "next-translate/useTranslation"; import { Field, reduxForm } from "redux-form"; import { RenderPickList, RenderTextfield } from "./representationElements"; const RepDetails = (props) => { let { t } = useTranslation(); const router = useRouter(); const { locale } = router; const { currentType, casesObj } = props; return ( <> {" "}
{t("case:summary-applicant-label")}
{casesObj.appellantApplicant || ""}
{/*
{t("case:summary-agent-label")}
Mr A Agent
*/}
{t("case:summary-site-address-label")}
{casesObj.address1 || ""}
{casesObj.town || ""}
{casesObj.postcode || ""}

This form enables you to submit comments on a case to Planning and Environment Decisions Wales.{" "}

Please note that comments from interested parties need to be made within the timetable. This can be found on the previous ‘Case Summary‘ page. Comments submitted after this date may be considered invalid.

); }; export default RepDetails;