13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
"use client";
|
|
|
|
import PropertiesClient from "@/components/PropertiesClient";
|
|
import BengaluruHeader from "@/components/BengaluruHeader";
|
|
|
|
export default function BengaluruPropertiesClientWrapper() {
|
|
return (
|
|
<PropertiesClient
|
|
headerRenderer={(props) => <BengaluruHeader {...props} />}
|
|
/>
|
|
);
|
|
}
|