11 lines
325 B
TypeScript
11 lines
325 B
TypeScript
|
|
import { ResidentialInterestDetail } from '@/components/residential/residential-interest-detail';
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
params: Promise<{ id: string }>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default async function ResidentialInterestDetailPage({ params }: Props) {
|
||
|
|
const { id } = await params;
|
||
|
|
return <ResidentialInterestDetail interestId={id} />;
|
||
|
|
}
|