mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-12 13:28:55 +00:00
define condition/page.tsx
This commit is contained in:
parent
521500f209
commit
b156899b71
1 changed files with 19 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
import { getPropertyMeta } from "../utils";
|
||||
|
||||
export default async function Condition(props: {
|
||||
params: Promise<{ slug: string; propertyId: string }>;
|
||||
}) {
|
||||
const params = await props.params;
|
||||
const propertyMeta = await getPropertyMeta(params.propertyId);
|
||||
const urpn = propertyMeta.uprn;
|
||||
|
||||
console.log(propertyMeta);
|
||||
|
||||
return (
|
||||
<>
|
||||
<div>
|
||||
TEST
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue