added dns record view with tabs
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user