11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
|
|
import { ResidentialClientDetail } from '@/components/residential/residential-client-detail';
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
params: Promise<{ id: string }>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default async function ResidentialClientDetailPage({ params }: Props) {
|
||
|
|
const { id } = await params;
|
||
|
|
return <ResidentialClientDetail clientId={id} />;
|
||
|
|
}
|