define condition/page.tsx

This commit is contained in:
Daniel Roth 2026-01-30 17:21:16 +00:00
parent 521500f209
commit b156899b71

View file

@ -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>
</>
)
}