From 293b3c1929caec5e6b78ede871da2fc12a5a490b Mon Sep 17 00:00:00 2001 From: jahooma <jahooma@gmail.com> Date: Thu, 9 Dec 2021 15:31:02 -0600 Subject: [PATCH] Create contract page --- web/pages/contract/[contractId].tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 web/pages/contract/[contractId].tsx diff --git a/web/pages/contract/[contractId].tsx b/web/pages/contract/[contractId].tsx new file mode 100644 index 00000000..d69d0d05 --- /dev/null +++ b/web/pages/contract/[contractId].tsx @@ -0,0 +1,12 @@ +import { useRouter } from 'next/router' + +export default function ContractPage() { + const router = useRouter() + const { contractId } = router.query + + return ( + <div> + {contractId} + </div> + ) +} \ No newline at end of file