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 ( +
+ {contractId} +
+ ) +} \ No newline at end of file