added dns record view with tabs

This commit is contained in:
2021-08-10 17:17:39 +01:00
parent 259d1e0d88
commit b96aa3acbe
23 changed files with 1497 additions and 115 deletions
@@ -0,0 +1,30 @@
import Link from "next/link";
import { useRouter } from "next/router";
import { useContext } from "react";
import useTranslation from "next-translate/useTranslation";
const ApplicationTabsComments = (props) => {
let { t } = useTranslation();
const router = useRouter();
const { locale } = router;
return (
<>
<div className="govuk-grid-row">
<div className="govuk-grid-column-full">
<h3>
Representations received regarding XXXXXXXX XXXXXXXX
XXXXXXX Order
</h3>
<p className="govuk-body-s">
No comments have been received as yet. Any we receive
will be published on this page.
</p>
</div>
</div>
</>
);
};
export default ApplicationTabsComments;