Create contract page
This commit is contained in:
parent
b5145305e6
commit
293b3c1929
12
web/pages/contract/[contractId].tsx
Normal file
12
web/pages/contract/[contractId].tsx
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
import { useRouter } from 'next/router'
|
||||||
|
|
||||||
|
export default function ContractPage() {
|
||||||
|
const router = useRouter()
|
||||||
|
const { contractId } = router.query
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{contractId}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user